#include  <stdio.h>
#include  <string.h>
#include  <sys/types.h>

#define   BUF_SIZE   100

int main()
{
	setbuf(stdout, NULL);
	
    printf("hi");
    
    fork();
    fork();
    
    return 0;
}