S = input() T = 'abcdefghijklmnopqrstuvwxyz' for s, t in zip(S, T): if t != s: print(t + 'to' + s)