#include int main(){ int i; char S[1024]; scanf("%s", S); for(i=0; S[i]!='\0'; i++){ S[i] -= i; } printf("%s", S); return 0; }