#include int main(void) { int i; char s[1025]; scanf("%s", s); i = 0; while(s[i] != '\0'){ printf("%c", (s[i] - (i % 26) - 1 - 65 + 26) % 26 + 65); i++; } return 0; }