#include<bits/stdc++.h>
using namespace std;
int main() {
string s;
getline(cin,s);
if(s[0]>='a'&&s[0]<='z') printf("%c",s[0]-32);
else printf("%c",s[0]);
int len=s.size();
for(int i=1; i<=len; i++) {
if(s[i]>='A'&&s[i]<='Z') printf("%c",s[i]+32);
else printf("%c",s[i]);
}
cout<<endl;
return 0;
}
为什么不能AC???