#include<stdio.h>
void dataIn(void);
void main(void)
{
	int  a=0;
	dataIn();
	printf("The value read is %d",a);
	while(1);
}

void dataIn()
{
	return;
}	
