Files
Algorithm/백준/10989.py
2026-04-11 11:56:14 +09:00

12 lines
242 B
Python

import sys
N = int(sys.stdin.readline().rstrip())
arr=[0] * 10001
for i in range(N):
temp=int(sys.stdin.readline().rstrip())
arr[temp]+=1
for i in range(10001):
if(arr[i]!=0):
for j in range(arr[i]):
print(i)