Q

백준 10951

백준 10951번 문제


C code

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

int main(void)
{
int a, b;

while(scanf("%d %d", &a, &b) > 0)
printf("%d\n", a + b);

return 0;
}