S = list(input()) for i in range(len(S)): num = ord(S[i])-i-1 while num <= 64: num += 26 S[i] = chr(num) S = "".join(S) print(S)