본문 바로가기

카테고리 없음

백준 1427 "소트인사이드"

Python 

import sys


temp = sys.stdin.readline().rstrip()
array = []

for i in temp: 
    array.append(int(i))
array.sort(reverse=True)
for i in array:
    print(i, end="")