#24444: python 解答 AC


ianchen611@gmail.com (揚)

學校 : 國立臺北科技大學
編號 : 123857
來源 : [114.45.14.132]
最後登入時間 :
2024-10-14 20:20:50
a104. 排序 -- yoooooooo | From: [118.167.60.138] | 發表日期 : 2021-02-18 15:22

#a104: 排序 AC
try:
    while (True):
        a=input()
        a=list (map(int,input().split()))
        a.sort()
        b=len(a)
        for i in a:
            print(i,end="")
            b=b-1
            if b>0:
                print(" ",end="")
        print("")
except EOFError:
    pass
 
ZeroJudge Forum