題目 a104: 排序https://zerojudge.tw/ShowProblem?problemid=a104 解答 12345678910while True: try: n = int(input()) n = list(map(int,input().split())) n.sort() for i in n: print(i,end = ' ') print() except: break