def slime(h): if h // a == 0: return 1 else: return slime(h // a) * 2 + 1 h,a = map(int,input().split()) print(slime(h))