n = int(input())

l = list(map(int, input().split()))
l.reverse()
l2 = []
for i in l:
    l2.append(i)
print(l2)