본문 바로가기
Python/이것이 취업을 위한 코딩 테스트다(with 파이썬)

이것이 취업을 위한 코딩테스트다 - 위에서 아래로

by sophia02 2022. 7. 3.
# 위에서 아래로
N = int(input())
S = []
for i in range(N):
    S.append(int(input()))

S = sorted(S, reverse=True)
for i in S:
    print(i, end=' ')