#include<bits/stdc++.h> using namespace std; int main(){ int a[1000], s=0; while(cin>>a[s++] && a[s-1]);s--; while(s--)cout<<a[s]<<" "; return 0; }