#include<stdio.h> using namespace std; int main(){ float a,b,c,d,e,f,g; a=9.6*6; b=9.4*5; c=9.8*5; d=a-b; e=a-c; f=d+e; g=(a-f)/4; printf("%0.2lf",g); }