• + 0 comments
    #

    if name == 'main': n = int(input().strip())

    arr = list(map(int, input().rstrip().split()))
    print(*arr[::-1])