while True: try: s = list(input()) od = [ord(i) for i in s] out = [] od.sort() for i in od: out.append(chr(i)) print(''.join(out)) except: break