/*__________________________________________________

   Libro: EMPEZAR DE CERO A PROGRAMAR EN LENGUAJE C
   Test 11.23
   
   Web del Autor: http://www.carlospes.com
  __________________________________________________*/

#include <stdio.h>
int main()
{
   int x = 9, y, z = 2;
   x =+ 4;
   y = x / z;
   printf( "%d%.2f%d", x, ( float ) y, z );
   return 0;
}
