728x90
https://www.acmicpc.net/problem/2750
728x90
n = int(input())
num = []
for i in range(0, n):
num.append(int(input()))
num.sort()
for i in range(0, n):
print(num[i])
728x90
'Problem Solving > BOJ' 카테고리의 다른 글
[백준, BOJ 2747] 피보나치 수 (python) (0) | 2021.05.10 |
---|---|
[백준, BOJ 2920] 음계 (python) (0) | 2021.05.10 |
[백준, BOJ 10828] 스택 (python) (0) | 2021.05.09 |
[백준, BOJ 9012] 괄호 (python) (0) | 2021.05.09 |
[백준, BOJ 10946] 랜덤 게임~~~~ (python) (0) | 2021.05.09 |