/* a+b * 输入0 0 结束程序 */ #include <stdio.h> int main(void) { int a, b; while((scanf("%d %d", &a, &b)) && a + b != 0) printf("%d\n", a + b); return 0; }