#include <stdio.h>
int main(void)
{
int A = 0;
int B = 0;
while(true)
{
scanf("%d %d", &A, &B);
if(A == 0 and B == 0)
break;
printf("%d\n", A+B);
}
return 0;
}
'Computer Science > 백준 알고리즘' 카테고리의 다른 글
[백준] 10989번 수 정렬하기 3 (파이썬) (0) | 2022.06.21 |
---|---|
[백준] 10953번 A+B-6 (C/C++) (0) | 2022.06.21 |
[백준] 10951번 A+B -4 (C++) (0) | 2022.06.21 |
[백준] 10950번 A+B -3 (C++) (0) | 2022.06.21 |
[백준] 10926번 ??! (파이썬) (0) | 2022.06.21 |