HDOJ1000 A+B Problem

HDOJ1000 A+B Problem

Accepted.

代码如下:

1 #include<stdio.h>
2 int main()
3 {
4     int a,b;
5     while(scanf("%d %d",&a,&b)==2)
6        printf("%d\n",a+b);
7 
8     return 0;
9 }
posted @ 2015-03-12 21:24  GodWU  阅读(109)  评论(0编辑  收藏  举报