// firstProgram.cpp
// R. A. Hillyard
// Last Modified: 08/16/2001
//
// A Simple program - introduction to C++
#include <iostream>
using namespace std; //introduces namespace std
int main()
{
cout << "Hello World from CS150!" << endl;
return 0;
}