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