#include using namespace std; signed main(){ int n;cin>>n; vector v(n+1); for(int i=0;i<=n;i++)cin>>v[i]; reverse(v.begin(),v.end()); for(int i=0;i