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