您的位置:首页 > 其它

poj 1000 A+B Problem

2013-07-29 11:44 260 查看
A+B Problem

Time Limit: 1000MS
Memory Limit: 10000K
Total Submissions: 271918
Accepted: 147471
Description
Calculatea+b
Input
Twointeger a,b (0<=a,b<=10)
Output
Output a+b
Sample Input
1 2
Sample Output
3

A+B Problem

Time Limit: 1000MS
Memory Limit: 10000K
Total Submissions: 271918
Accepted: 147471
Description
计算 a+b
Input
两个整形数 a,b(0<=a,b<=10)
Output
输出 a+b
Sample Input
1 2
Sample Output
3
#include <stdio.h>

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