#include #include using namespace std; int a, b; int main () { #ifndef ONLINE_JUDGE freopen("test.in", "r", stdin); #endif cin >> a >> b; cout << a+b; return 0; }