#include<iostream> using namespace std; int main(){ int n,x,y,m; cin>>n>>x>>y; m=y/x; if(y%x !=0){ m ++; } if (m>=n){ cout<<0; } else{ cout<<n-m; } }