• + 0 comments

    n = int(input()) arr = list(map(int, input().rstrip().split())) i = len(arr)-1 while(i>=0): print(arr[i],end=" ") i=i-1