#include <iostream>
using namespace std;
int main()
{
    string s, t;
    for(cin >> t; cin >> s; t = s + " " + t);
    cout << t;
}