a,b = map(int,input().split()) if a % 2*b != 0 : ans = a//(2*b)*b else : ans = (a//(2*b)-1)*b print(ans)