S=input() x="" i=1 for n in S: a=ord(S[i-1]) b=i%26 if a-b<65: a=a-b+26 else: a-=b x+=chr(a) i+=1 print(x)