using System; namespace No063_ポッキーゲーム { class Program { static void Main(string[] args) { string[] input = Console.ReadLine().Split(' '); int l = int.Parse(input[0]); int k = int.Parse(input[1]); int count = 0; for (; l - 2 * k > 0; l -= 2 * k) count++; if (l == 0) Console.WriteLine((count - 1) * k); else Console.WriteLine(count * k); } } }