#include<bits/stdc++.h> using namespace std; int main(){ int q,w,e,r; cin>>q>>w>>e; if(w+e<q){ r=q/(w+e); cout<<r; } else{ cout<<"0"; } return 0; }