n, k =map(int,input().split())## 나눗셈은 빼기의 합이므로 나눌 수 있다면 나누는 게 좋다. (정당성 분석)
count =0while n !=1:if n%k ==0:
n /= k
count +=1else:
n -=1
count +=1print(count)
n, k = map(int, input().split())
result = 0
while True:
target = (n//k) * k
result += (n-target)
n = target
if n < k :
break
result += 1
n //= k
result += (n-1)
print(result)
아래의 모범답안은 내 풀이와 달리 시간 복잡도를 logn만큼만 걸리도록 작성되었다.