hduoj1091(A+B for Input-Output Practice (III))

来源:互联网 发布:淘宝快递一直显示揽件 编辑:程序博客网 时间:2024/06/05 17:18
#include<stdio.h>
int main
()
{

    int
a,b;
    while
(
scanf("%d%d",&a,&b)&&(a!=0||b!=0))
    {

        printf("%d\n",a+b);
    }

        return
0;
}
0 0