// Contract: main: void -> int
//
// Purpose: either:
// <describe the program being written> OR
// testing program for the functions <f1>, <f2>, ...
//
// Examples: <describe, in prose, what the effect of running this
// main() function should be>
//
// by: <YOUR NAME>
// last modified: <DATE LAST MODIFIED>
#include <iostream>
#include "YOUR_FUNC_NAME_HERE.h"
using namespace std;
int main()
{
//... actions of this main ...
return EXIT_SUCCESS;
}