using System; class sample { public static void Main() { int n = int.Parse(Console.ReadLine()); int w = int.Parse(Console.ReadLine()); int a; while(w>0) { a = n / (w * w); w--; if (w != 0) { n = n - a; } } Console.WriteLine(n); } }