S_std = 'abcdefghijklmnopqrstuvwxyz' S = input() for s,std in zip(S,S_std): if s != std: print(std,'to',s,sep='')