#include using namespace std; int main() { string a, b; cin >> a >> b; string ans = a + b; cout << stoi(ans) << endl; return 0; }