s = raw_input() ans = [] for i in range(len(s)): x = ord(s[i]) - (i+1) while x < 65: x += 26 x = chr(x) ans.append(x) print "".join(ans)