alpha = "abcdefghijklmnopqrstuvwxyz" s = input() for a, ss in zip(alpha, s): if a != ss: print(a + "to" + ss)