#include<bits/stdc++.h> using namespace std; int main(){ string s; int i=0; string ss[110]; while(cin>>s){ ss[i]=s; i++; } for(int j=i-1;j>=0;j--) cout<<ss[j]<<" "; return 0; }