write a program that removes all the empty spaces in a sentence and capitalize the first letter of each word. code example
Example: python capitalize first letter of string without changing the rest
string[0].upper() + string[1:]
string[0].upper() + string[1:]