using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace No63Pokkey { class Program { static void Main(string[] args) { //整数の入力 string[] number = Console.ReadLine().Split(' '); int L = int.Parse(number[0]); int K = int.Parse(number[1]); //L/2が余る場合 double ans = 0; if (L % 2 != 0) { ans = K * ((L / K) / 2); } //L/2が余らない場合 else if (L % 2 == 0) { ans = (K * ((L / K) / 2)) - K; } //表示 if(ans <= 0) { Console.WriteLine("0"); } else { Console.WriteLine(Math.Floor(ans)); } } } }