← Back to List

16212번: 정열적인 정렬 ↗

Solutions

Python 3
84 B | 84 chars
a=input()
b=list(map(int,input().split()))
b.sort()
for i in b:
    print(i,end=" ")