using System; namespace No51_MotivationIssues { internal class Program { static void Main(string[] args) { int w = int.Parse(Console.ReadLine()); int d = int.Parse(Console.ReadLine()); long result = w; for(long i = d; 1 < i; i--) { result -= result / (i * i); } Console.WriteLine(result); } } }