t = 'abcdefghijklmnopqrstuvwxyz' S = input().strip() a = [x + 'to' + y for x, y in zip(t, S) if x != y] print(a[0])