using System; using System.Text; using System.Collections.Generic; using System.Linq; class Program { static void Main() { int w = int.Parse(Console.ReadLine()); int d = int.Parse(Console.ReadLine()); int i = d; for(; 1 < i; i--) { w -= w / (i * i); } Console.WriteLine($"{w}"); } }