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

int main()
{
printf("hello world\n");
write(0, "hello\n", 6);
}

