/*__________________________________________________

   Libro: EMPEZAR DE CERO A PROGRAMAR EN LENGUAJE C
   Ejemplo 11.47: "Errores de sintaxis"
   
   Web del Autor: http://www.carlospes.com
  __________________________________________________*/

include <stdio.h>

imt main()
{
   int a, b;

   a = 4;
   b = a * 6;

   printf( "%d", b )

   retunr 0;
}

