n = int(input())
l = [input() for _ in range(n)]
for i in sorted(l):
    print(i)