1 - [在线测评解答教程] A+B 问题(有框架)

通过次数

19340

提交次数

19756

Time Limit : 1 秒
Memory Limit : 128 MB

输入两个数字,输出它们的和。

Input

两个整数: a, b(0 \leq a, b \leq 100)

Output

输出一个整数,该整数为 a, b 两数字之和。

'

Examples

Input

1 2

Output

3

Hint

#include<bits/stdc++.h>
using namespace std;
int main(){
	int a,b;
	cin>>a>>b;
	cout<<a+b;
	return 0;
}