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