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