Answer:
The output of the code is following:-
My first C++ program.
The sum of 2 and 3 = 5
7 + 8 = 15
Step-by-step explanation:
First the program should have #include<iostream>.This is missing in the program.
In the program you have printed My first C++ program first then used newline character endl. After that you have printed The sum of 2 and 3 = 5 this will be printed in the new line.Then you have used endl.Then printed "7 + 8 = " string and the sum 7+8 that is 15.
Hence the output is like this.