• + 0 comments

    Python 3

    n = int(input().strip())
    
    arr = list(map(int, input().rstrip().split()))
    
    A = arr[:: -1] 
    
    print(*A , sep=' ')