S = list(input()) l = list(map(ord,S)) nl = [] for i,n in enumerate(l,1): nl.append(n - i % 26) ns = list(map(chr,nl)) ans = ''.join(ns) print(ns)