题解 |
Zero-complexity Transposition
https://www.nowcoder.com/practice/c54775799f634c72b447ef31eb36e975
while True:
try:
n = int(input())
s = list(map(int,input().split()))
for i in s[::-1]:
print(i,end=' ')
except:
break
