#include<iostream> #include<cmath> using namespace std; int main() { int m,t,s; cin>>m>>t>>s; if(t>0) { cout<<m-ceil(s/t); } return 0; }