PHP Compiler Testing
Camel Case

Have the function CamelCase(str) take the str parameter being passed and return it in proper camel case format where the first letter of each word is capitalized (excluding the first letter). The string will only contain letters and some combination of delimiter punctuation characters separating each word.

For example: if 
str is "BOB loves-coding" then your program should return the string bobLovesCoding.

Examples

Input: "cats AND*Dogs-are Awesome"
Output: catsAndDogsAreAwesomeInput: "a b c d-e-f%g"
Output: aBCDEFG