A=input() i=0 shift=27 x="" for n in A: asc=ord(A[i]) asc -= shift%26+i if asc < 65: asc += 26 x+=chr(asc) i+=1 print(x)