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

int main() {
    int t;
    scanf("%d",&t);
    double a[3];
    while(t--){
        scanf("%lf%lf%lf",&a[0],&a[1],&a[2]); //double 用lf 会出现小数
        double tem=(pow(a[0],16)+(pow(a[0],12))*1820*(pow(a[1],4)+pow(a[2],4)))/pow(16,16);
        printf("%.10lf\n",tem);//控制小数点后几位 %.
    }
}