提交时间:2024-02-29 22:58:26

运行 ID: 36534

#include<bits/stdc++.h> using namespace std; int main(void) { string s; cin >> s; if (s[0] >= 'a' && s[0] <= 'z') s[0] += 'Z' - 'z'; } cout << s << endl; return 0; }