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\n",a+b);   
  return 0;
} 

 

posted @ 2014-02-07 15:45  forever97  阅读(120)  评论(0编辑  收藏  举报