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