A = 'abcdefghijklmnopqrstuvwxyz' S = input() for a,s in zip(A, S): if a != s: ans = a + 'to' + s print(ans)