1000题编程#include<stdio.h>int main(){ int a,b; while(scanf("%d%d",&a,&b)!=EOF){ a+=b; printf("%d\n",a); } return 0;}