Find and fix the errors in the following pseudocode. Use the…

Find and fix the errors in the following pseudocode. Use the line number to describe the area(s) that contain the error and how would you fix it.  Line1: Declare Integer value1Line2: Declare Integer value2Line3: Declare Integer sumLine4: Set value1 + value2 = sumLine5: Display “Enter the first value.”Line6: Input value1Line7: Display “Enter the second value.”Line8: Input value2Line9: Display “The sum of numbers is “, sum