import math L, K = map(int,input().split()) result = 0 if L % 2 == 0: L = L // 2 else: L = math.floor(L / 2) + 1 if L % K == 0: print(L // K - 1) else: print(math.floor(L / K) * K)