#include using namespace std; int main() { string A, B; cin >> A >> B; if (B[0] != '-') { cout << A + B << endl; } else { cout << stoi(A) + stoi(B) << endl; } }