aboutsummaryrefslogtreecommitdiff
path: root/Codeforces.Console/Program.cs
blob: 4da79bd9aa3db06cbf1563fd66d31e0aa65525d0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
namespace Codeforces
{
	public class Program
	{
		public static void Main()
		{
			int count = IOParser.ParseNumber();
			for (int i = 0; i < count; i++)
			{
				var numbers = IOParser.ParseNumbers();
				Console.WriteLine(numbers.Sum());
			}
		}
	}
	
	public static class IOParser
	{
		public static int[] ParseNumbers()
		{
			return Console.ReadLine()
					.Split(' ')
					.Select(x => int.Parse(x))
					.ToArray();
		}
		
		public static int ParseNumber()
		{
			return int.Parse(Console.ReadLine());
		}
	}
}