#include int main() { int L,K; scanf("%d%d",&L,&K); if(L<=K*2){ printf("%d",0); }else if(L%(2*K)==0){ printf("%d",L/2-K); }else{ printf("%d",L/(K*2)*K); } return 0; }