5 lines
80 B
Python
5 lines
80 B
Python
ser = int(input())
|
|
mas = list(map(int, input().split()))
|
|
mas.sort()
|
|
print(*mas)
|