#include <iostream>
int n, m;
using namespace std;

int main() {
	cin>>n>>m;
	n=n+m;
	cout<<n;
	return 0;
}