A + B Problem

来源:互联网 发布:安卓优化软件排行榜 编辑:程序博客网 时间:2024/04/30 19:56

A + B Problem

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

0 0
原创粉丝点击