1
2
3
4
5
6
7
8
9
10
#include <iostream>
#include <stdio.h>
 
int main(void) {
    int a, b;
    scanf("%d %d"&a, &b);
    std::cout << a+<< std::endl;
    
    return 0;
}
cs


'C & C++ > Baekjoon' 카테고리의 다른 글

백준 2675 - 문자열 반복  (0) 2017.12.27
백준 2577 - 숫자의 개수  (0) 2017.12.27
백준 2557 - Hello World  (0) 2017.12.27
백준 2441 - 별찍기 4  (0) 2017.12.27
백준 2440 - 별찍기 3  (0) 2017.12.27

+ Recent posts