#include <iostream> #include <cmath> using namespace std; int main(){ int n,x,y,a; cin>>n>>x>>y; a=ceil(1.0*y/x); cout<<n-a; return 0; }