in c++ (Sum, average and product of numbers in a file) Supposethat a text file Exercise13_3.txt contains six integers. Write aprogram that reads integers from the file and displays their sum,average and product. Integers are separated by blanks.
Instead of displaying the results on the screen, send theresults to an output named using your last name.
Example:
     Contents ofExercise13_3.txt:
100 95 88 97 71 67 80 81 82 |
|
    Â
     Contents ofYourLastName.txt:
Your first and last name Total = 761 Average = 84.6 |
|
    Â
Run the program for the example above and for another examplewith 15 scores.