L, K = map(int, input().split(' ')) n = (L // K) // 2 l = K * n r = L % (2 * K) if r==0: print(l-K) else: print(l)