#include <bits/stdc++.h>
using namespace std;
int main(){
int n;
cin>>n;
int i[n+1];
for(int j=1;j<=n;j++){
cin>>i[j];
}
for(int j=n;j>0;j--){
cout<<i[j]<<" ";
}
return 0;
}
/**************************************************************
Problem: 1009
User: wengzihang
Language: C++
Result: Accepted
Time:9 ms
Memory:2072 kb
****************************************************************/