본문으로 바로가기

[Baekjoon 1단계(5)] 1000번 : A+B

category Baekjoon 문제풀이 2021. 8. 31. 13:09

출제 링크 : https://www.acmicpc.net/problem/1000

 

1000번: A+B

두 정수 A와 B를 입력받은 다음, A+B를 출력하는 프로그램을 작성하시오.

www.acmicpc.net

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)
        {
            string[] s = Console.ReadLine().Split();

            Console.WriteLine(int.Parse(s[0]) + int.Parse(s[1]));
        }
    }
}