#include using namespace std; int main() { string s; cin >> s; for(const char c: s){ cout << (char)(c^0x20); } cout << endl; return 0; }