/*	Hello world program.
	A Student 8/21/97     */

#include <iostream.h>

using namespace std;	// October 5, 2001

int main()
{
	cout << "Hello, world!";    // first statement
	return(0);    // second statement
}
