#include <iostream>
#include<iomanip>
#include<cmath>
using namespace std;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int t;
    cin>>t;
    cout<<fixed<<setprecision(10);
    while(t--){
        double a,b,c;
        cin>>a>>b>>c;
        a/=16.0;
        b/=16.0;
        c/=16.0;
        double p=pow(a,12)*(pow(b,4)+pow(c,4));
        double c16_4=2.0*5*14*13;
        cout<<p*c16_4+pow(a,16)<<endl;
    }
    return 0;
}
// 64 位输出请用 printf("%lld")