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