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