using System;
public class bj10950
{
class Program
{
static void Main(string[] args)
{
int t = int.Parse(Console.ReadLine());
for (int i = 0; i < t; i++)
{
string[] s = Console.ReadLine().Split();
int num1 = int.Parse(s[0]);
int num2 = int.Parse(s[1]);
Console.WriteLine(num1 + num2);
}
}
}
}
'C# > C# (백준)' 카테고리의 다른 글
[C#] 백준 알고리즘 2741번, N 찍기 (0) | 2022.07.26 |
---|---|
[C#] 백준 알고리즘 8393번, 합 (0) | 2022.07.25 |
[C#] 백준 알고리즘 2739번, 구구단 (0) | 2022.07.25 |
[C#] 백준 알고리즘 2480, 주사위 세개 (0) | 2022.07.22 |
[C#] 백준 알고리즘 2884번, 오븐 시계 (0) | 2022.07.21 |