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