Run ID:144707

提交时间:2026-01-24 15:48:18

#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; return 0; }