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