1. You've to count the number of digits in a number. 2. Take as input "n", the number for which the digits has to be counted. 3. Print the digits in that number.
Input Format
"n" where n is any integer.
Output Format
"d" where d is the number of digits in the number "n"
Constraints
1 <= n < 10^9
Notice
Try First, Check Solution later
1. You should first read the question and watch the question video.2. Think of a solution approach, then try and submit the question on editor tab.3. We strongly advise you to watch the solution video for prescribed approach.Example
Input
65784383
Output
8