using namespace std; int main() { double a,b; cin>>a>>b; double c=a/(a+b); cout << fixed << setprecision(1) << c; }