#include <stdio.h>
void Print_massage()
{
 printf("input data\n");
}
int main(void) {
	// your code goes here
    Print_massage();
	return 0;
}
