
/*
 *  HELLO.C
 */

#include <stdio.h>

main(ac, av)
int ac;
char *av[];
{
    puts("hello world");
    return(0);
}

