/*__________________________________________________

   Libro: EMPEZAR DE CERO A PROGRAMAR EN LENGUAJE C
   Test 12.12
   
   Web del Autor: http://www.carlospes.com
  __________________________________________________*/

#include <stdio.h>
int main()
{
   int x = 6, y = 8;
   switch ( x + y )
      case 6 : printf( "6" );
      case 8 : printf( "8" );
     case 14 : printf( "14");
     default : printf( "0" );
   return 0;
}

