#include #include using namespace std; const int NMAX = 1000 + 1; int n, m; int main() { cin >> n >> m; cout << n + m << '\n'; return 0; }