#include #include using namespace std; int main() { cin.tie(nullptr); ios::sync_with_stdio(false); uint32_t n, m; cin >> n >> m; cout << n + m << '\n'; return 0; }