#abc156b. [abc156_b]Digits

[abc156_b]Digits

Problem Statement

Given is an integer NN. Find the number of digits that NN has in base KK.

Notes

For information on base-KK representation, see Positional notation - Wikipedia.

Constraints

  • All values in input are integers.
  • 1leqNleq1091 \\leq N \\leq 10^9
  • 2leqKleq102 \\leq K \\leq 10

Input

Input is given from Standard Input in the following format:

NN KK

Output

Print the number of digits that NN has in base KK.


Sample Input 1

11 2

Sample Output 1

4

In binary, 1111 is represented as 1011.


Sample Input 2

1010101 10

Sample Output 2

7

Sample Input 3

314159265 3

Sample Output 3

18