#include using namespace std; int main(){ cout.precision(20); double p,q; cin >> p >> q; cout << p*q/((100-p)*(100-q) + p*q) << endl; }