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