/******************************************************************************/
/*									      */
/* hello.c : Program to say Hello to the world				      */
/*    Author: Sanjiv K. Bhatia						      */
/*    Date  : June 18, 1996						      */
/*									      */
/******************************************************************************/

#include <stdio.h>

main()
{
    printf ( "Hello World\n" );
    exit ( 0 );
}