Write a program that prints the number of characters in the input, the number of words in the input, and the number of lines in the input. The beginning of a word is, by definition, a character other than a space or newline, when the preceding character was a space or a newline or the beginning of the input. You may assume that the input ends with a newline. For example, if the user types Hello, hello, hello. Is there anybody in there? without spaces at the beginning or end of each line, your program will print 48 8 2.