代码如下:
1 #include <stdio.h> 2 3 int main(void) 4 { 5 int a, b; 6 while (scanf("%d %d", &a, &b) == 2){ 7 printf("%d\n", a+b); 8 } 9 10 return 0; 11 }