#include using namespace std; int main(){ cin.tie(0); ios::sync_with_stdio(false); double P, Q; cin >> P >> Q; cout.precision(9); cout << fixed << 100 * P * Q / (P * Q + (100 - P) * (100 - Q)) << endl; return 0; }