【AKOJ】1024-A+B Problem

来源:互联网 发布:制作游戏用什么软件 编辑:程序博客网 时间:2024/06/13 01:29

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 20 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);}}


0 0
原创粉丝点击