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

int main()
{
    int i;
		printf("hello\n");
		fork();
    return 0;
}