/*-------
  Signature: main: void -> int

  Purpose: to print a greeting to the screen

  Examples: when this is run, the following should be
      printed to the screen:
Hello CS 111 World!

  by: Sharon Tuttle
  last modified: 2016-10-28
--------*/

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

int main()
{
    cout << boolalpha;     

    cout << "Hello CS 111 World!" << endl;

    return EXIT_SUCCESS;
}