#abc156b. [abc156_b]Digits
[abc156_b]Digits
Problem Statement
Given is an integer . Find the number of digits that has in base .
Notes
For information on base- representation, see Positional notation - Wikipedia.
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
Print the number of digits that has in base .
Sample Input 1
11 2
Sample Output 1
4
In binary, is represented as 1011
.
Sample Input 2
1010101 10
Sample Output 2
7
Sample Input 3
314159265 3
Sample Output 3
18