#include<iostream> int main(){ float a,b,c,d,f,g,h; a=6*9.6; b=5*9.4; c=a-b; d=5*9.8; f=a-d; g=a-(c+f); h=g/4; printf("%.1f",h); return 0; }