PROGRAMMING:Word length
Your program reads in a line of text, which is separated by spaces into a number of words and ends with a ".". You need to output the length of each word. The word here has nothing to do with language, and can include various symbols, such as' it's' to calculate a word with a length of 4. Note that consecutive spaces may appear in the line; The last one is not counted.
###Input format:
Input gives a line of text in a line, ending with a "."
Tips: < / b > use ` scanf (% C ",...)` To read in a character until it reaches'.
###Output format:
Output the length of the word corresponding to this line of text in a line, with spaces between each length, and no last space at the end of the line.
###Input example:
```in
It's great to see you here.
```
###Output example:
```out
4 5 2 3 3 4
```
answer:If there is no answer, please comment
###Input format:
Input gives a line of text in a line, ending with a "."
Tips: < / b > use ` scanf (% C ",...)` To read in a character until it reaches'.
###Output format:
Output the length of the word corresponding to this line of text in a line, with spaces between each length, and no last space at the end of the line.
###Input example:
```in
It's great to see you here.
```
###Output example:
```out
4 5 2 3 3 4
```
answer:If there is no answer, please comment