#include<stdio.h> int main() { int a,b; while(~scanf("%d%d", &a, &b)) //直接用语句作为循环条件 printf("%d ",a+b); return 0; }