Solution (Raw Text)

l = []
for i in range(int(input())):
    l.append(int(input()))
l.sort()
for i in l: print(i)

Problem Statement

The document could not be loaded, sorry for the inconvenience.