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