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