Word Count - MarisaOJ: Marisa Online Judge

Word Count

Time limit: 1000 ms
Memory limit: 256 MB
Print the number of words in given string $S$. ### Input - 1 line contains string $S$. ### Output - A single integer is the number of words in string $S$. ### Constraints - $1 \le |S| \le 1000$. ### Example Input: ``` Master Spark ``` Output: ``` 2 ```