#include using namespace std; int main(){ int a, b; cin >> a >> b; a += b; cout << a << endl; return 0; }