#include using namespace std; int main(){ ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); int N; string S; cin >> N >> S; for(int i = 0; i < N; i++){ cout << (char) (219 - S[i]); } cout << "\n"; }