#include int main() { int W, D; std::cin >> W >> D; while( D > 1 ) { W -= W/D/D; --D; } printf( "%d\n", W ); return 0; }