S = input() T = 'abcdefghijklmnopqrstuvwxyz' U = [t+'to'+s for s, t in zip(S, T) if t != s] print(*U)