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
989
3
989 has 3 digits so we printed 3
5
1
5 has 1 digit so we printed 1
99
2
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.