/* Filename: output.cpp Author: Br. David Carlson Date: January 4, 2000 Modified: June 26, 2000 This program merely prints some messages on the screen. */ #include using namespace std; int main(void) { cout << "Start of program" << endl; cout << endl << "You can print whatever you like!" << endl; cout << endl << "End of program" << endl; return 0; }