/*=====
    C++ program that prints a CS 235 greeting to the screen

    compile using:
        g++ hello.cpp -o hello
    run using:
        ./hello

    by: Sharon Tuttle
    last modified: 2021-08-28
=====*/   

#include <cstdlib>
#include <iostream>
using namespace std;

/* prints a greeting to the screen */

int main()
{
    cout << "Hello, CS 235!" << endl;
}