#include int main(void){ int W,D; scanf("%d",&W); scanf("%d",&D); for(D;D>1;D--){ W -= (int)(W / D / D); } printf("%d",W); return 0; }