S = input() T = "abcdefghijklmnopqrstuvwxyz" for i in range(len(S)): if S[i] != T[i]: print(T[i]+'to'+S[i])