n = int(input())
tmp = input().split()
tmp.reverse()
for i in range(0, n):
print(tmp[i], end = " ")
'Codeup 기초 > Python' 카테고리의 다른 글
Codeup 1096 - 바둑판에 흰 돌 놓기. (0) | 2020.02.15 |
---|---|
Codeup 1095 - 이상한 출석 번호 부르기3. (0) | 2020.02.15 |
Codeup 1093 - 이상한 출석 번호 부르기1. (0) | 2020.02.15 |
Codeup 1092 - 함께 푸는 날. (0) | 2020.02.15 |
Codeup 1091 - 수 나열하기3. (0) | 2020.02.15 |