import random
l = list(input())
random.shuffle(l)
print(''.join(l))