inp = input() out = "" for i in range(len(inp)): x = i + 1 c = ord(inp[i]) - x while c <= 64: c += 26 out += chr(c) print(out)