ABC = 'abcdefghijklmnopqrstuvwxyz'
S = input()
for i, s in enumerate(S):
    if ABC[i] != s:
        print(f'{ABC[i]}to{s}')