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