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