/*__________________________________________________

   Libro: EMPEZAR DE CERO A PROGRAMAR EN LENGUAJE C
   Ejercicio Resuelto 11.7: "Codificación en C"
   
   Web del Autor: http://www.carlospes.com
  __________________________________________________*/

#include <stdio.h>

int main()
{
   int x;

   printf( "Introduzca un numero entero: " );
   scanf( "%d", &x );
   printf( "%d + %d = %d", x, x, x + x );

   return 0;
}