n = int(input())
l = list(map(int, input().split()))

j = len(l) - 1

for i in range(n):
    print(l[j], end = " ")
    j -=1