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]); //余る場合 double ans = 0; int N = L / K; if (L%K != 0) { ans = K * (N / 2); } //余らない場合 else if (L%K == 0) { if (N % 2 == 0) { ans = K * (N / 2) - K; } else if (N % 2 != 0) { ans = K * (N / 2); } } //表示 if (ans <= 0) { Console.WriteLine("0"); } else { Console.WriteLine(Math.Floor(ans)); } } } }