A+B Problem

 

Time Limit:1000MS  Memory Limit:65536K
Total Submit:308 Accepted:181

 

原题链接

Description

A+B Problem 水题水题, 没有最水,只有更水。

Input

连续输入两个整数 a、 b,当a=0且b=0时结束输入

Output

输出a+b的值,并换行。

Sample Input

 

1 2
0 0

 

Sample Output

 

3

 

Source

XiaoZhou

 

 

#include<stdio.h>
main()
{
    int a,b;
    while(scanf("%d%d",&a,&b)!=EOF&&a||b)
    {
        
        printf("%d\n",a+b);
    }
}

 



posted @ 2017-03-17 15:23  dearvee  阅读(103)  评论(0)    收藏  举报