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