string = input() new_string = "" for i, char in enumerate(string): new_string += chr(ord(char) - (i + 1) % 26) print(new_string)