/* cc.hellow.

   The simple Hello World application.  */

#include <iostream.h>

int main (void)
{
  cout << "Hello World" << endl;
  return 0;
}
