How Many Digits

You are given an integer number X where (0 <= X < 100000). Print the number of digits in that integer.

Note: X is guaranteed to be (0 <= X < 100000) which means X will never be less than 0 and will never be more than 99999

Example 1

Input

989

Output

3

Explanation of Input and Output

989 has 3 digits so we printed 3

Example 2

Input

5

Output

1

Explanation of Input and Output

5 has 1 digit so we printed 1

Example 3

Input

99

Output

2

Explanation of Input and Output

99 has 2 digits so we printed 2

Test your solution here
when it passes, copy it and submit it here so your coach can grade it.