Competitions
DSA Week 1
Digits
Find the number of digits in a nonnegative integer n
.
Input
One nonnegative integer n
(0 ≤ n ≤ 2 * 109
).
Output
Print the number of digits in number n
.
Input example #1
12343
Output example #1
5
Find the number of digits in a nonnegative integer n
.
One nonnegative integer n
(0 ≤ n ≤ 2 * 109
).
Print the number of digits in number n
.
12343
5