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