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