#include<bits/stdc++.h> using namespace std; int main(){ int s,t,m; cin>>m>>t>>s; if(s%t==0){ cout<<m-(s/t); } else{ cout<<m-(s/t)+1; } }