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