#include <stdio.h>

int main(void) 
{
	int x;
	printf("enter the no.=");
	scanf("%d",&x);
    printf("The no is=%d",x);
	return 0;
}
