blob: 133481ad4fe0a2af54b5fc7b8375282788b0ee40 (
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 = InputParser.ParseNumber();
for (int i = 0; i < count; i++)
{
var numbers = InputParser.ParseNumbers();
Console.WriteLine(numbers.Sum());
}
}
}
public static class InputParser
{
public static int[] ParseNumbers()
{
return Console.ReadLine()
.Split(' ')
.Select(x => int.Parse(x))
.ToArray();
}
public static int ParseNumber()
{
return int.Parse(Console.ReadLine());
}
}
}
|