3409 拼接字符串
#include <bits/stdc++.h>
using namespace std;
int main() {
    string s;
    cin>>s;
    cout<<s; //先输出原字符串
    
    s[0]-=32; //首字母变大写
    cout<<s; //再输出新的单词
    
  return 0;
}
#include <bits/stdc++.h>
using namespace std;
int main() {
    string s;
    cin>>s;
    cout<<s; //先输出原字符串
    
    s[0]-=32; //首字母变大写
    cout<<s; //再输出新的单词
    
  return 0;
}
