#include <bits/stdc++.h>
using namespace std;
int main()
{
    int n,x,y,a;
    cin>>n>>x>>y;
    a=n-y/x;
    if(y%x>0)
    {
        a=a-1;
    }
    cout<<a<<endl;
    return 0;
}

0 comments

No comments so far...