Language is python 9.14 lab: brute force equation solver numerous engineering and scientific applications require finding solutions to a set of equations. ex: 8x + 7y = 38 and 3x - 5y = -1 have a solution x = 3, y = 2. given integer coefficients of two linear equations with variables x and y, use brute force to find an integer solution for x and y in the range -10 to 10. ex: if the input is: 8 7 38 3 -5 -1 then the output is: x = 3 , y = 2 use this brute force approach: for every value of x from -10 to 10 for every value of y from -10 to 10 check if the current x and y satisfy both equations. if so, output the solution, and finish. ex: if no solution is found, output: there is no solution