Problems
Title String
Title String
A common word-processing task is capitalizing the first letter of each word in a string. You are given a string containing lowercase words separated by one or more space characters. Print identical string except with the first character of each word is capitalized.
Input data
String containing words of lowercase letters 'a' - 'z', separated by one or more space characters.
Output data
Print the string identical to input, where the first character of each word is capitalized.
Examples
Input example #1
introduction to algorithms
Output example #1
Introduction To Algorithms