lis = list(map(int,input().split())) L,K = lis[0],lis[1] if(L // (2 * K) == 0): print(0) else: print(L // (2 * K)*K)