#include<iostream> using namespace std; int main(){ float a,b,c,e,f,g; a=9.6*6; b=9.8*5; c=9.4*5; f=a-b; e=a-c; d=a-e-f; g=d/4; cout<<g; return 0; }