Q

백준 10952

백준 10952번 문제


C code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <stdio.h>

int main(void)
{
int a, b;

while(scanf("%d %d", &a, &b) > 0)
{
if(a == 0 && b == 0)
break;
printf("%d\n", a + b);
}

return 0;
}