본문 바로가기
Beakjoon&프로그래머스/파이썬

[백준/파이썬] 25773번 Number Maximization

by 현장 2023. 6. 29.

-Code

num = sorted(input(), reverse=True)

print(*num, sep='')