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