출처: https://meyouus.tistory.com/64 [정보 공유 - For Me For You For Us]
본문으로 바로가기

이제는 정렬 문제 단계로 왔다.

import sys

N = int(sys.stdin.readline())
num = []

for i in range(N):
    num.append(int(sys.stdin.readline()))
for j in sorted(num):
    print(j)

매우 간단한 정렬문제이다. 단순히 sorted() 함수를 사용하여 문제의 조건에 알맞게 출력했다.