#include<iostream> int main(){ double a,b,c,d,max,min; a=5*9.4; b=5*9.8; c=6*9.6; max=c-a; min=c-b; d=(c-max-min)/4; printf("%.1lf",d); return 0; }