#include<iostream>
using namespace std;

int main()
{
	float k1,k2,t1,t2;
	cin>>t1>>k1>>t2>>k2;
	cout<<(t1*t2)/(k1*t2+k2*t1);
}