// This is a sample C++ source code file in the sample project.

 

#include <iostream>     //inclusion of support for doing input & output

using namespace std;    //declare access to standard stuff like cin, cout

 

 

// Beginning of main function

int main()              

{

            cout << " Hello. This is my first program." << endl << endl;

            return 0;

}

//End of the main function.