s = input()
alp = 'abcdefghijklmnopqrstuvwxyz'
for a, b in zip(alp, s):
    if a != b:
        print(a, 'to', b, sep='')