s=input() r='' for i in range(len(s)): a=ord(s[i])-i-1 while a < 65: a+=26 r+=chr(a) print(r)