#include<stdio.h>
main()
{
int x;

printf("input the integer value of x: ");
scanf("%d", &x);
printf("you input the value %d \n", x);

if (x == 3) printf("Yes the input value is 3\n");
else printf("No the input value is not 3\n");
}

