#include<iostream> using namespace std; int main() { string s ; while(getline(cin, s)) { for(int i = 0 ; i < s.length() ; i++ ) { double hex = s[i] ; char c = hex - 7 ; cout << c ; } cout << endl ; } return 0; }