#include using namespace std; int main() { string a; cin >> a; for (int i = 0; i < a.size(); i++) cout << char(a[i] + 3); return 0; }