VioletaBabel

1000번: A+B 본문

백준/백준-C#6.0
1000번: A+B
Beabletoet 2018. 1. 23. 16:05
1
2
3
4
5
6
7
8
9
using System;
class MainCode
{
    static void Main(string[] args)
    {
        string[] s = Console.ReadLine().Split();
        Console.WriteLine(int.Parse(s[0]) + int.Parse(s[1]));
    }
}
cs


'백준 > 백준-C#6.0' 카테고리의 다른 글

1924번: 2007년  (0) 2018.01.24
Comments