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