L, K = map(int, input().split(' ')) div = L // (K + K) if L % (K + K) == 0: if div - 1 > 0: print((div - 1) * K) else: print(0) else: print(div * K)