#include

using namespace std;

int main()

{

cout << "My first C++ program.";

cout << "The sum of 2 and 3 = " << 5; .............................Output

cout << "7 + 8 = " << 7 + 8;

return 0; }