#include<math.h> using namespace std; int main() { int m,t,s,x,k; cin>>m>>t>>s; if (t==0) x=0; else { k=ceil(s/t); x=m-k;} cout<<x<<endl; return 0; }