hdu1089 目的:计算出a+b 思路:输入a,b,输出a+b #include void main(){ int a,b; while(scanf("%d%d",&a,&b)!=EOF){ printf("%d\n",a+b); } }