Capitalization is writing a word with its first letter as a capital letter. Your task is to capitalize the given word.
Note, that during capitalization all the letters except the first one remains unchanged.
Input A single line contains a non-empty word. This word consists of lowercase and uppercase English letters. The length of the word will not exceed 103.
Output Output the given word after capitalization.
Examples inputCopy ApPLe outputCopy ApPLe inputCopy konjac outputCopy Konjac
#include<cstdio> #include<cstdlib> #include<cstring> #include<cmath> #include<ctime> #include<iostream> #include<algorithm> #include<map> #include<stack> #include<queue> #include<vector> #include<set> #include<string> #define ll long long #define dd double using namespace std; int main() { ios::sync_with_stdio(false); string s1; cin >> s1; if (s1[0] >= 'a' && s1[0] <= 'z') { s1[0] -= 32; } cout << s1 << endl; }