#include using namespace std; int main(){ double p, q, r; cin >> p >> q; r = p * q + (1 - p) * (1 - q); printf( "%.10f\n" , r ); return 0; }