using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace catprint
{
class Program
{
static void Main(string[] args)
{
string[] s = Console.ReadLine().Split();
Console.WriteLine(int.Parse(s[0]) + int.Parse(s[1]));
}
}
}
'C# > C# (백준)' 카테고리의 다른 글
[C#] 백준 알고리즘 14681번, 사분면 고르기 (0) | 2022.07.19 |
---|---|
[C#] 백준 알고리즘 9498번, 시험 성적 (0) | 2022.07.18 |
[C#] 백준 알고리즘 2753번, 윤년 (0) | 2022.07.18 |
[C#] 백준 알고리즘 2557번, Hello World (0) | 2022.07.18 |
[C#] 백준 알고리즘 1330번, 두 수 비교하기 (0) | 2022.07.18 |