#include <bits/stdc++.h>

using namespace std;

const int N = 10010;
typedef long long LL;
LL a[N];

int main() {
    int n;
    cin >> n;
    for (int i = 0; i < n; i++) {
        cin >> a[i];
    }

    for (int i = n - 1; i >= 0; i--) {
        cout << a[i] << " ";
    }

    return 0;
}