HDU 1095 A+B for Input-Output Practice (VII)

#include <cstdio>
#include <iostream>
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/3539614.html