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