A = ord("A") def f(i,x): v = ord(x) - 1 - i%26 if v < A: v += 26 return chr(v) s = input() ans = "".join(f(i,x) for i,x in enumerate(s)) print(ans)