/* CPE 101                                                                  */
/* Alex Dekhtyar                                                            */
/* Integer division                                                         */

#include <stdio.h>                          /*       preprocessor directive */

int main() {                                /*  main()  function: beginning */

   float x,y,z;

   x = 4.0;
   y = 5.0;
  
   z = x/y;

   printf("%f\n", z);
 
   return 0;                             
   }                                        /* end of main() function       */