#include using namespace std; int main() { cin.tie(0); cout.tie(0); ios::sync_with_stdio(false); long H, A; cin >> H >> A; long ans = 0; long cnt = 1; while(H > 0) { ans += cnt; cnt *= 2; H /= A; } cout << ans << '\n'; return 0; }