#include using namespace std; int main(){ int L,K,ans = 0; cin >> L >> K; while(L > 2*K){ L -= 2*K; ans +=K; } cout << ans << endl; }