in_str = input() s = sorted(set(in_str)) ss = sorted(s, key=lambda x:in_str.count(x),reverse=True) print(''.join(ss))