// cout statements

#include <iostream>
#include <cstdlib>
using namespace std;

int main()
{
/*	cout << "hello world" << endl
	     << "hello Ohio State" << endl
	     << "hello Michigan" << endl; 
*/

	cout << "Four score and seven years ago I made "
		 << "up a bunch of stuff to say blah blah "
		 << "blah blah\n\n\n\n\n\n\n" << endl << endl << endl << endl;

	system("pause");
	return 0;
}// end of main
