PROGRAMMING:String length
Write a user-defined function to return the number of characters in a string, excluding '\ 0'. Input some strings in the main function, and output their length by using user-defined function.
###Input example:
```in
HRBNU
NORMAL
UNIVERSITY
```
###Output example:
```out
five
six
ten
```
answer:If there is no answer, please comment
###Input example:
```in
HRBNU
NORMAL
UNIVERSITY
```
###Output example:
```out
five
six
ten
```
answer:If there is no answer, please comment