n = int(input())

l = list(map(int, input().split()))
ll = l[::-1]
for i in ll:
    print(i, end=" ")