String input = System.Console .In.ReadLine();
char[] test = {' ' };
string[] input_char = input.Split(test);
int first = Int32 .Parse(input_char[0]);
int second = Int32 .Parse(input_char[1]);
System. Console.Out.WriteLine(first+second);
[문제]
'100.알고리즘 > 01. Baekjoon Online' 카테고리의 다른 글
[Baekjoon online] 1004번 문제 - 어린 왕자 (0) | 2016.07.14 |
---|---|
[Baekjoon online] 1003번 문제 - 피보나치 함수 (0) | 2016.07.14 |
[Baekjoon online] 1002번 문제 - 터렛 (0) | 2016.07.14 |
[Baekjoon online] 1001번 문제 - A-B (0) | 2016.07.14 |