aboutsummaryrefslogtreecommitdiff
path: root/Codeforces.Console/Program.cs
blob: 21ac3e9cbe5a7b778caa062edbbdce9f1cab3adf (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(string[] args)
		{
			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());
			}
		}
	}
}