#include<bits/stdc++.h> using namespace std; int main() { string s; cin>>s; s[0]=toupper(s[0]); cout<<s<<endl; return 0; }
No comments