您的位置:首页 > 编程语言 > PHP开发

HDU 1089 A+B for Input-Output Practice (I)

2014-09-14 18:38 393 查看
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1089

#include <iostream>
#include<cstdio>
using namespace std;

int main()
{
int a,b;
while(scanf("%d %d",&a,&b)!=EOF)
{
printf("%d\n",a+b);
}
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息