#include #include #include #include #include #include #include #include #include #include using namespace std; int main(){ string x, y; cin >> x >> y; swap(x, y); cout << x << " " << y << endl; }