Given a non-negative integer $N$, count the number of digits in $N$.

Input

The only line of input contains an integer $N$. $(0 \le N \le 10^9)$

Output

Output the number of digits in $N$.

Note

How many digits are there in $0$?

Sample Test Cases

Input Output
69420 5
Click to copy.

Scoring: Per Subtask
Authored by s16f22
Appeared in 2023 Children's Day Mini Contest