[Python] [백준 2751] 수 정렬하기

김바덕·2023년 6월 5일

백준

목록 보기
3/23
post-thumbnail

https://www.acmicpc.net/problem/2751

풀이

n=int(input())
a=[]
for i in range(n):
    a.append(int(input()))
a.sort()
for i in a:
    print(i)
profile
UXUI Designer

0개의 댓글