S = input() for i in range(26): if S[i] == chr(i): continue print('%sto%s' % (chr(i), S[i])) break