NETWORK & SEVER FACTORY

개인 공부 기록

Study/BAEKJOON

[BAEKJOON] 10952번 : A+B - 5

1nfra 2020. 9. 15. 11:18
728x90
1
2
3
4
5
6
7
8
9
10
11
12
13
#include <stdio.h>
 
int main() {
    int a = 0, b = 0;
 
    while (1) {
        scanf("%d %d"&a, &b);
        if (a == 0 && b == 0break;
        printf("%d\n", a + b);
 
    }
    return 0;
}
cs
728x90

'Study > BAEKJOON' 카테고리의 다른 글

[BAEKJOON] 1110 : 더하기 사이클  (0) 2020.09.15
[BAEKJOON] 10951 : A+B - 4  (0) 2020.09.15
[BAEKJOON] 10871번 : X보다 작은 수  (0) 2020.09.14
[BAEKJOON] 2439번 : 별 찍기 - 2  (0) 2020.09.14
[BAEKJOON] 2438번 : 별 찍기 - 1  (0) 2020.09.14