#include using namespace std; int main() { string s; cin >> s; for (int i = 0; i < s.length(); i++) s[i] -= i+1; cout << s << '\n'; return 0; }