#include int main(void){ int c; int i=1; int temp; while((c=getchar())!='\n') { temp=i; temp%=26; if((c-65)-temp>=0) printf("%c",c-temp); else printf("%c",90-(temp-1)); i++; } printf("\n"); return 0; }