17 lines
312 B
C#
17 lines
312 B
C#
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());
|
|
}
|
|
}
|
|
}
|
|
} |