Develop a RISC-V program in Venus simulator that accepts an input integer x and uses twomethods to compute the following equation:
(x) = (x + 1) ∗ (x ― 2) ; (1) = 1; (2) = 2
You can assume x is always a positive integer number.In the program, please have a main function that takes the value of the input, performs theaccumulation computations by the two methods, and prints the outputs of the two methods in theconsole.Please verify your program for 3 different input values x₁, x₂, and x₃ such that x₁ ≠ x₂ ≠ x₃