Run ID:153013

提交时间:2026-05-09 22:37:25

#include<bits/stdc++.h> using namespace std; int main(){ char c; cin >> c; if (c >= 'A' && c <= 'Z') { cout << (char)(c + 32) << endl; } else { cout << (char)(c - 32) << endl; } return 0; }