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