HDU 1089 A+B for Input-Output Practice (I)

#include <cstdio>  
int main()   
{   
  int a,b;   
  while(scanf("%d%d",&a,&b)!=EOF)  
  printf("%d
",a+b);   
  return 0;
} 
原文地址:https://www.cnblogs.com/forever97/p/3539603.html