수 정렬하기
N = int(input()) N_List = [] for _ in range(N): N_List.append(int(input())) N_List.sort() for i in range(N): print(N_List[i])
정렬공부 시작