#include int main(void) { int M, D; std::cin >> M >> D; std::cout << M + D << std::endl; return 0; }