n = int(input())
li = []
for i in range(n):
li.append(int(input()))
li.sort()
for i in li:
print(i)
'코딩테스트 > 백준' 카테고리의 다른 글
백준 2751번 수 정렬하기 2 python 파이썬 (0) | 2022.10.06 |
---|---|
백준 10817번 세 수 python 파이썬 (0) | 2022.10.06 |
백준 2581번 소수 python 파이썬 (0) | 2022.10.05 |
백준 10867번 중복 빼고 정렬하기 python 파이썬 (0) | 2022.10.05 |
백준 1181번 단어 정렬 python 파이썬 (0) | 2022.10.05 |