#33847: C++ ANS


yp11151097@yphs.tp.edu.tw (908-30施耀登)


#include<bits/stdc++.h>
using namespace std;
main(){
string a;
while(getline(cin,a)){
    for(int i=0;i<a.size();i++){
        a[i]=a[i]-7;
        cout<<a[i];
    }
    cout<<endl;
}
}