l,k = map(int,input().split()) if (k*2>=l): print(0) else: if l%k==0: print((((l//k)-1)*k)//2) else: print(((l//k)*k)//2)