// #define _GLIBCXX_DEBUG #include using namespace std; #define rep(i, n) for (int i = 0; i < (int)(n); ++i) int main() { // Input string S; cin >> S; // Output for (const char& c : S) { if ('a' <= c && c <= 'z') cout << (char)(c - 'a' + 'A'); if ('A' <= c && c <= 'Z') cout << (char)(c - 'A' + 'a'); } cout << '\n'; }