游客 Signup | Login
中文 | En

3796 - A+B 输入输出练习 一组测试数据

的任务是计算a+b。这是为了acm初学者专门设计的题目。你肯定发现还有其他题目跟这道题的标题类似,这些问题也都是专门为初学者提供的。

Input

输入包含a和b,通过空格隔开。

Output

对于输入的每对a和b,输出a、b的和。

Examples

Input

1 5

Output

6

Solution C++

#include<bits/stdc++.h>
using namespace std;
long long a,b;
int main()
{
	cin>>a>>b;
	cout<<a+b;
	
	return 0;
} 
Time Limit 1 second
Memory Limit 128 MB
Discuss Stats
上一题 下一题