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