s=input() ans="" for i,j in enumerate(s,1): t=ord(j)-i while t<65: t+=26 ans+=chr(t) print(ans)