#include <iostream>
#include <string>

using namespace std;

int main() {
    string x, y;
    cin >> x >> y;
    cout << x + y;
    return 0;
}