#include <bits/stdc++.h> using namespace std; typedef long long ll; ll fac[17]; ll C(int n,int m) { return fac[n]/fac[n-m]/fac[m]; } void solve() { double a,b,c; cin>>a>>b>>c; double res = 0; res = C(16,16)*pow(a/16,16); // printf("%.10lf\n",res); res +=C(16,12)*pow...