//Name
//Lab # 1
//Date
//filename.cpp


#include <iostream> 	//allows input from keyboard and output to screen
using namespace std;  	//always do this -- saves you work later!

int main()
{
	cout << "Hello, world! This is my first program.";
	
	return 0;
} // end of main

// PROGRAM OUTPUT
//Hello, world! This is my first program.Press any key to continue