#include <iostream>#include <string>
using namespace std;int main(){ string x; getline(cin, x); for(int i = 0; i < x.length();i++){ char temp; temp = x[i]; temp = temp - 7; cout << temp; }}