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

  Purpose: to print hello to the screen

  Examples: when this is run, it should print to the
      screen:
 hello

  by: Sharon Tuttle 
  last modified: 2016-12-02
--------*/

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

int main()
{
    cout << boolalpha;     

    cout << "hello" << endl;

    return EXIT_SUCCESS;
}