그리디 (99)
n, k = map(int, input().split()) i = 0 while True: if (n == 1): break if (n % k == 0): n = n // k else: n = n - 1 i += 1 print(i)