본문 바로가기

Programming [Python]/백준 알고리즘 솔루션

#88 백준 파이썬 [1427] 소트인사이드

https://www.acmicpc.net/problem/1427

 

 

#Solution

N = list(str(input()))
N.sort(reverse = True)
answer = ""

for i in N:
    answer += i
print(int(answer))