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