알고리즘 공부/백준 (1) 썸네일형 리스트형 [파이썬] 백준 2750번 수 정렬하기 https://www.acmicpc.net/problem/2750 n = int(input()) listed = [] for i in range(1, n+1): a = int(input()) listed.append(a) for q in sorted(listed): print (q) 이전 1 다음