using System; using System.Collections.Generic; using System.Linq; namespace Test { class Program { static void Main(string[] args) { int w = int.Parse(Console.ReadLine()); int d = int.Parse(Console.ReadLine()); for (; d > 1; d--) { w -= w / (d * d); } Console.WriteLine(w); } } }