Given a phrase with one or more words, capitalize the first letter of each word and make the remaining letters all lowercase.

Example:

initialCap("hello karel") --> "Hello Karel"
initialCap("JAVA in hIgh SchOOl") --> "Java In High School"

This is in Java.