using namespace std;
#include <bits/stdc++.h>

int main(){
	int A,B;
	cin >> A >> B ;
	cout << A + B << endl;
}