/*__________________________________________________

   Libro: EMPEZAR DE CERO A PROGRAMAR EN LENGUAJE C
   Ejemplo 11.44: "Entrada de dos números enteros"
   
   Web del Autor: http://www.carlospes.com
  __________________________________________________*/

#include <stdio.h>

int main()
{
   int a, b;

   printf( "Introduzca el primer numero: " );
   scanf( "%d", &a );
   printf( "Introduzca el segundo numero: " );
   scanf( "%d", &b );
   printf( "Los valores son: %d, %d ", a, b );

   return 0;
}

