[백준] 수 정렬하기 2750번 - Python

GoshK·2022년 1월 30일
0

[백준] Python

목록 보기
1/27
post-thumbnail

[백준] 수 정렬하기 2750번

나의 풀이

N = int(input())
a = []
for i in range(N):
    a.append(int(input()))

for i in sorted(a):
    print(i)

0개의 댓글