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