#define NDEBUG #include #include #include #include #include #include #include #include #include using namespace std; using ll = long long; using ull = unsigned long long; const int N = 1e5 + 5; int main() { #ifdef LOCAL std::freopen("..\\in", "r", stdin), std::freopen("..\\out", "w", stdout); #endif std::ios::sync_with_stdio(false); std::cin.tie(0); ll a, b; cin >> a >> b; cout << a + b; return 0; }