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