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