L,K=map(int,input().split()) #print(L,K) if L%(2*K)!=0: print(L//(2*K)*K) else: print(L//(2*K)*K-K)