#include using namespace std; int main(){ string S; cin >> S; for(int i = 0; i < S.size(); ++i){ printf("%c", S[i]-i); } printf("\n"); }