#include using namespace std; typedef long long LL; int main() { cin.tie(0); ios::sync_with_stdio(false); LL n; int m; cin >> n >> m; cout << n / m - (n / m) % 1000 << endl; return 0; }