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
",a+b);
  return 0;
}
原文地址:https://www.cnblogs.com/forever97/p/3539606.html