s=[ord(c)-65 for c in raw_input()] for i in range(len(s)): s[i]=(s[i]+25-i)%26 s=[chr(i+65)for i in s] print"".join(s)