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