//Name: Bo Bayles   Date: 24 August 2004
//file: hello.cpp   Class: CS54 C
//Description: This program will write a greeting to the screen.

#include <iostream>
using namespace std;

int main()
{
  cout << "Hellooooo, world." << endl;
  return 0;
}

