#include<bits/stdc++.h>
using namespace std;
int main(){
	int a,b,c,d,e;
	e=0;
	cin>>a>>b>>c;
	d=b+c;
	cout<<a/d; 
	return 0;
}
