HDU 1091 A+B for Input-Output Practice (III)

#include <cstdio>
int main()
{
  int a,b;
  while(scanf("%d%d",&a,&b)!=EOF)
  if (a+b) printf("%d\n",a+b);
  return 0;
}

 

posted @ 2014-02-07 15:47  forever97  阅读(107)  评论(0)    收藏  举报