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