aboutsummaryrefslogtreecommitdiff
path: root/WordCapitalization/main.cpp
blob: 057e47f4482ae1bc20f2706140a0c2b56c3b4494 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include<bits/stdc++.h>

using namespace std;

int main () {
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);
  string s;
  cin >> s;
  s[0] = toupper(s[0]);
  cout << s << endl;
}