Run ID:118864

提交时间:2025-05-10 16:15:57

#include<iostream> using namespace std; int main(){ char c; cin>>c; if(isupper(c)){ c=tolower(c); }else { c=toupper(c); cout<<c<<endl; } return 0; }