// Filename: proverb.cpp

// This program prints the proverb below:
//
//     "Now is the time for all good men to come to the aid of their party"
//
// in a function called writeProverb that is called by the main function.

#include <iostream>

using namespace std;

void writeProverb(); //This is the prototype for the writeProverb function 

int main()
{
    cout << "Now is the time for all good men to come to the aid of their party" << endl;
    return 0;
}

// ********************************************************************
// writeProverb
//
// task: This function prints a proverb
// data in: none
// data out: no actual parameter altered
//
// ********************************************************************
void writeProverb()
{
	cout <<"********************************************************************" << endl << endl;
    cout << "Now is the time for all good men to come to the aid of their party" << endl << endl ;
    cout << "********************************************************************" << endl << endl;
}
