Run ID:144711

提交时间:2026-01-24 15:49:53

#include<iostream> using namespace std; int main(){ int x; cin>>x; if('A'<=x&&x<='Z'){ x=x+32; } if('a'<=x&&x<='z'){ x=x-32; } cout<<x<<endl; return 0; }