728x90
n = int(input())
res = []
for i in range(n):
res.append(int(input()))
res.sort()
for i in res:
print(i)
728x90
'[Coding Test] > [백준]' 카테고리의 다른 글
[백준] 10816 파이썬(python) : 숫자 카드 2 (0) | 2022.07.04 |
---|---|
[백준] 10814 파이썬(python) : 나이순 정렬 - sort() (0) | 2022.07.04 |
[백준] 2609 파이썬(python) : 최대공약수와 최소공배수 - (유클리드 호제법) (0) | 2022.07.04 |
[백준] 2164 파이썬(python) : 카드2 (0) | 2022.07.04 |
[백준] 1978 파이썬(python) : 소수 찾기 (0) | 2022.07.04 |