S = input() T = "abcdefghijklmnopqrstuvwxyz" for s, t in zip(S, T): if s != t: print(f"{t}to{s}")