#include<bits/stdc++.h> using namespace std; int main(){ int n,x,y; cin>>n>>x>>y; int o=n-ceil(y*1.00/x); if(o>0) cout<<o; else cout<<0; return 0; }