#include "stdio.h"
int main(){int a,b;scanf("%d%d",&a,&b);
printf("%d\n",a+b); return 0;
}运行不是好好的吗,怎么总是过不了
检查一下自己的输入输出格式
(a+b)呢,。。。。
Process to end of file 所以要 while(scanf("%d %d",&a,&b)!=EOF)