Write a program that reads a word and determines if it is in camel case. A word is considered to be in camel case if the first letter is lowercase and each of the remaining letters is either uppercase or lowercase. For example, myDog
is in camel case and MyDog
is not in camel case.
Here are a few sample runs of the completed program: