출제 링크 : https://www.acmicpc.net/problem/10951
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Solution
{
class Program
{
static void Main(string[] args)
{
StringBuilder sb = new StringBuilder();
bool repeat = true;
while (repeat)
{
string numbers = Console.ReadLine();
if (numbers==null) break;
string[] AB = numbers.Split(' ');
int A = int.Parse(AB[0]);
int B = int.Parse(AB[1]);
int Sum = A + B;
Console.WriteLine(Sum);
}
}
}
}
'Baekjoon 문제풀이' 카테고리의 다른 글
[Baekjoon 5단계(1)] 10818번 : 최소, 최대 (0) | 2021.09.01 |
---|---|
[Baekjoon 4단계(3)] 1110번 : 더하기 사이클 (0) | 2021.09.01 |
[Baekjoon 4단계(1)] 10952번 : A+B - 5 (0) | 2021.08.31 |
[Baekjoon 3단계(11)] 10871번 : X보다 작은 수 (0) | 2021.08.31 |
[Baekjoon 3단계(10)] 2439번 : 별 찍기 - 2 (0) | 2021.08.31 |