s= str(input()) m="abcdefghijklmnopqrstuvwxyz" for i in range(26): if s[i] != m[i]: print(m[i] + "to" + s[i])