You are on page 1of 1

#include <bits/stdc++.

h>
using namespace std;

int main() {
int n;
cin>>n;
vector<int>myvector(n);
for(int i=0 ;i<n;i++){
cin>>myvector[i];
}
for(int i=n;i>0;i--){
cout<<myvector[i]<<endl;
}
// your code goes here
return 0;
}

You might also like