#include using namespace std; int main(void) { int n,h,m,q; cin>>n>>h>>m; q = m/h; cout<<((m==q*h)?(n-q):(n-q-1))<<endl;//三目运算

return 0;

}