哈哈A+B
1 #include<stdio.h> 2 int main() 3 { 4 int a,b; 5 while(scanf("%d%d",&a,&b)!=EOF){ 6 printf("%d\n",a+b);} 7 return 0; 8 }