code = input() def decrypt(x): global code num = ord(code[x]) - x + 12 classify = num % 26 return chr(65 + classify) plaintext = "" for i in range(len(code)): plaintext += decrypt(i) print(plaintext)