#include int main(void){ int W,D; scanf("%d",&W); scanf("%d",&D); while(1){ W-=W/(D*D); D--; if(D==1){ printf("%d\n",W);break; } } return 0; }