소스코드
#include <stdio.h>
int main(){
int A, B;
while (1){
scanf("%d %d", &A, &B);
if (A == 0 && B == 0)
break;
printf("%d\n", A+B);
}
}
제출
'PS > Baekjoon Online Judge' 카테고리의 다른 글
[백준 10871] X보다 작은 수 [C] (0) | 2021.07.14 |
---|---|
[백준 10872] 팩토리얼 [C] (0) | 2021.07.13 |
[백준 10951] A+B - 4 [C] (0) | 2021.07.13 |
[백준 10950] A+B - 3 [C] (0) | 2021.07.13 |
[백준 10869] 사칙연산 [C] (0) | 2021.07.13 |