您的位置:首页 > 其它

POJ 1000

2017-01-12 15:52 302 查看
A+B Problem

Time Limit: 1000MS Memory Limit: 10000K
Total Submissions: 408832 Accepted: 229470
Description

Calculate a+b
Input

Two integer a,b (0<=a,b<=10)
Output

Output a+b
Sample Input
1 2

Sample Output
3
水题
#include <iostream>
using namespace std;
int main()
{
int a,b;
cin>>a>>b;
cout<<a+b;
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  POJ