#include<iostream>
#include<cmath>
using namespace std;
int main()
{
    double n,h,m;
    while(cin>>n>>h>>m){
        cout<<n-ceil(m/h);
    }
    return 0;
}