3363 - a+b问题
现在有两个实数,分别是A和B。计算它们的和A+B。
Input
<span style="line-height:1.5;">两个整数a,b (0<=a,b<=10)</span>
<br />
Output
a+b的值
Examples
Input
1 2
Output
3
Hint
题目来源:吕红波
Solution C++
#include<iostream> using namespace std; int main() { long long a,b; cin>>a>>b; cout<<a+b; }
Hint
题目来源:吕红波