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