Codeforces-SolutionsA/Codes/281 A - Word Capitalization/281A.cpp

10 lines
136 B
C++
Raw Normal View History

2023-06-07 22:15:00 +08:00
#include<bits/stdc++.h>
using namespace std;
int main()
{
char ch,s[1000];
cin>>s;
s[0]=toupper(s[0]);
cout<<s<<endl;
}