728x90
반응형

li = []
for i in range(0, int(input())):
    li.append(int(input()))
li.sort()
for n in li:
    print(n)

728x90
반응형

+ Recent posts