#include<bits/stdc++.h>
using namespace std;
int main()
{
string s;
cin >> s;
for (int i = 0;i < s.size();i++){
if (i = 0 && int(s[i]) >= 97){
s[i]-=32;
}
if (i != 0 && int(s[i]) <= 90){
s[i]+=32;
}
}
cout << s << endl;
return 0;
}
TLE了,然后本地也是一直不输出,也不结束程序