2 lines
99 B
Python
2 lines
99 B
Python
data = [int(input()) for i in range(int(input()))]
|
|
print("\n".join([str(n) for n in sorted(data)])) |