s = input().split() r = [] for c in s: if c == 'z': r.append('a') else: n = chr(ord(c) + 1) r.append(n) print(' '.join(r))