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