hduoj1089(A+B for Input-Output Practice (I))

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

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

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

    return
0;
}
0 0