游客 Signup | Login
中文 | En

3363 - a+b问题

现在有两个实数,分别是A和B。计算它们的和A+B。

Input


<span style="line-height:1.5;">两个整数a,b (0&lt;=a,b&lt;=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

题目来源:吕红波

Time Limit 1 second
Memory Limit 128 MB
Discuss Stats
上一题 下一题