You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
204 B

#include<bits/stdc++.h>
using namespace std;
const int MAXN=10000;
int main() {
int a[MAXN];
int i,n;
cin>>n;
for(i=0; i<n; i++)
cin>>a[i];
for(i=n-1; i>=0; i--)
cout<<a[i]<<" ";
return 0;
}