C++ Please
Given integer variables seedVal and largest, seed the pseudorandom number generator with seedVal. Then, generate three random numbers in the range 1 to largest and output an equation of the form "A + B - C = X", where A, B, and C are the randomly generated numbers, and X is the solution to the equation. End with a newline.
Ex: If largest is 9, then a possible output is:
7 + 9 - 3 = 13
Note: srand() should be called only once at the start.