import java.util.Scanner; public class Test { public static void main(String[] args) { Scanner sc = new Scanner(System.in); long w = sc.nextLong(), d = sc.nextLong(); while(d > 1){ w -= w/(d*d); d--; } System.out.println(w); } }