1 #include<cstdio> 2 3 int main(){ 4 int a, b; 5 while(scanf("%d%d",&a,&b)!=EOF) 6 printf("%d ",a+b); 7 return 0; 8 }
注意要求,其实是有多个输入的,需要以此输出结果。