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