Files
CodeTest/baekjoon/수_정렬하기/solution_6692442.py
2024-08-29 16:24:03 +09:00

4 lines
119 B
Python

data = []
for i in range(int(input())) :
data.append(int(input()))
print("\n".join([str(n) for n in sorted(data)]))