#include <stdio.h>
int x;

main()
{
    puts( "Enter an integer value" );
    scanf( "%d", &x );

    printf( "\nThe value entered is %d\n", x );
    
    return 0;
}