#include <conio.h>
#include <unistd.h>

int main(int argc, char *argv[])
{
  while(1) 
    {
      cputs("hello");
      msleep(500);
      cputs("world");
      msleep(500);
    }

  exit(0);
};
