base='abcdefghijklmnopqrstuvwxyz' S = input() ans = '' for i in range(len(base)): if base[i] != S[i]: ans += base[i] +'to' + S[i] print(ans) exit()