aboutsummaryrefslogtreecommitdiff
path: root/Codeforces.Console/Program.cs
blob: ac18de4292ba6e79afad203a46a192907232b687 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
namespace Codeforces
{
	public class Program
	{
		public static void Main()
		{
			int count = int.Parse(Console.ReadLine()!);
			for (int i = 0; i < count; i++)			
			{
				var numbers = Console.ReadLine()!
					.Split(' ')
					.Select(x => int.Parse(x));
				Console.WriteLine(numbers.Sum());
			}
		}
	}
}