#include int main() { double p, q; scanf("%lf %lf", &p, &q); p /= 100; q /= 100; printf("%.30lf\n", 100 * (p*q) /(p*q + (1-p)*(1-q))); return 0; }