string:str = input() string = string.lower() string = sorted(string) res = ''.join(map(str, string)) print(res)