#include <stdio.h>
#include <unistd.h>

int		main(void)
{

    printf("printf1\n");
    write(1, "1 should be after printf\n", 25);
    
	printf("printf2\n");
	write(1, "2 should be after printf\n", 25);
	
	return 0;
}