s = input() result = "" for i in range(len(s)): j = ord(s[i]) j -= i+1 while j < 65: j += 26 j = chr(j) result += j print(result)