POJ 1000 A+B Problem

网友投稿 232 2022-11-29

POJ 1000 A+B Problem

A+B Problem

Time Limit: 1000MS

 

Memory Limit: 10000K

Total Submissions: 382869

 

Accepted: 214081

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 int main(){ int a,b; scanf("%d %d",&a, &b); printf("%d\n",a+b); return 0;}

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:Java集合框架之Stack Queue Deque使用详解刨析
下一篇:1035 Lunch Rush (水题)
相关文章

 发表评论

暂时没有评论,来抢沙发吧~