,,,
a.sort()不能放在print()裡面
while True: try: n=int(input()) a=[int(x) for x in input().split()] a.sort() print(*a) except EOFError: break