#include<bits/stdc++.h>
using namespace std ;
int main(){
char c;
while(cin >> c){
c=int(c)-7;
cout << (char)c << endl;
}
為甚麼要換行???