L, K = input().split() L, K = int(L), int(K) if L == 2*K: print(0) elif K == 1: print(((L // (2*K) * K))-1) else: print((L // (2*K) * K))