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