本文主要是介绍北邮机试 | bupt oj | A + B Problem,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
A + B Problem
时间限制 1000 ms 内存限制 65536 KB
题目描述
Calculate the sum of two given integers A and B.
输入格式
The input consists of a line with A and B. (−104≤A,B≤104).
输出格式
Output the only answer.
输入样例
2 3
输出样例
5
AC代码
#include <iostream>using namespace std;int main()
{//cout << "Hello world!" << endl;int a,b;cin>>a>>b;cout<<(a+b)<<endl;return 0;
}
这篇关于北邮机试 | bupt oj | A + B Problem的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!