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

/*
    print a lovely greeting to the screen

    can compile with the command: 
        g++ hello.cpp -o hello
    can run with the command:
        ./hello

    by: Sharon Tuttle
    last modified: 2015-08-26
*/

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

    return EXIT_SUCCESS;
}