Note

[codeup] 100. 이상한 출석 번호 부르기2 본문

etc/Coding Test

[codeup] 100. 이상한 출석 번호 부르기2

알 수 없는 사용자 2021. 12. 30. 05:45
728x90
n = int(input())
a = list(map(int, input().split()))
for i in range(n-1,-1,-1):
    print(a[i],end=' ')

 

Comments