よじろめ覚書

私の理解度重視のソースコードです。

ABC149A - Strings

問題:A - Strings

#include <iostream>
#include <string>
using namespace std;

int main(void) {
    string s, t;

    cin.tie(0);
    ios::sync_with_stdio(false);
    cin >> s >> t;
    cout << t + s << "\n";
    return 0;
}