백준 1427번 소트인사이드 파이썬
2022.03.10 22:20
백준 1427번 소트인사이드 파이썬 코드이다.
n = list(map(int, input()))
n.sort(reverse=True)
for i in n:
print(i, end='')