Input Format
A single line of input containing the full name, .
Constraints
- The string consists of alphanumeric characters and spaces.
Note: in a word only the first character is capitalized. Example 12abc when capitalized remains 12abc.
Output Format
Print the capitalized string, .
Sample Input
chris alan
Sample Output
Chris Alan
Problem solution in Python 2 programming.
Problem solution in Python 3 programming.
Problem solution in pypy programming.
Problem solution in pypy3 programming.
0 Comments