C="abcdefghijklmnopqrstuvwxyz" S=input().rstrip() for i in range(len(S)): char=S[i] if char!=C[i]:print(C[i]+"to"+char) else:pass