l,k = map(int,input().split()) if 2*k >= l: print(0) else: if l % (2 * k) == 0: print((int(l/(2*k))-1) * k) else: print(int(l/(2*k)) * k)