题解 | #图片整理#
图片整理
http://www.nowcoder.com/practice/2de4127fda5e46858aa85d254af43941
while True:
try:
str = input()
except:
break
else:
list = []
for i in str:
list.append(int(ord(i)))
list.sort()
for i in list:
print(chr(i),end='')
print()