PROGRAMMING:String input exercise (II)
Calculates the length of the string.
###Input format:
The first line is a positive integer n, followed by N lines of string.
One string per line.
###Output format:
For each line of string, output the length of the string.
###Input example:
```in
two
hello world!
welcome to acm world
```
###Output example:
The corresponding output is given here. For example:
```out
twelve
twenty
```
answer:If there is no answer, please comment
###Input format:
The first line is a positive integer n, followed by N lines of string.
One string per line.
###Output format:
For each line of string, output the length of the string.
###Input example:
```in
two
hello world!
welcome to acm world
```
###Output example:
The corresponding output is given here. For example:
```out
twelve
twenty
```
answer:If there is no answer, please comment