#include using namespace std; int main() { string S; cin >> S; for(char& c : S) { if(islower(c)) c = toupper(c); else c = tolower(c); } cout << S << endl; }