S = input() ans = [] for i,s in enumerate(S,1): ans.append(chr(ord(s)-i)) print(*ans,sep="")