while True: try: s = input() s1 = [] for i in s: s1.append(ord(i)) s1.sort() for j in s1: print(chr(j),end='') except: break