str_1 = input()
str_2  = sorted(str_1,key=lambda x: ord(x),reverse=False)
print(''.join(str_2))