开始努力 【BUPT_OJ 1000】

http://acm.scs.bupt.cn/onlinejudge/showproblem.php?problem_id=1000&submit=Go

 

 

Description

Calculate a+b

 

Input

Two integer a,b (0<=a,b<=100)

 

Output

Output a+b

 

Sample Input

 

1 1

 

Sample Output

 

2

 

 

简单的加法程序,没有其它的要求。只要注意输入输出格式即可。可以使用C,C++,JAVA,C#编译运行。

 

例程:C++:

 

#include using namespace std; int main() { int a,b; cin >> a >> b; cout << a+b << endl; return 0; } 

你可能感兴趣的:(java,c,C#,Integer,input,output)