You need to prepare a MIPS program to perform the given operations.
Question: Write and debug a MIPS program that performs the following operations
- Prompt for and input two integers "a" and "b" using syscalls
- Display one of the following statements depending on if a>b, or a=b or a
- You entered a greater than b
- You entered a equal to b
- You entered a less than b
Part 1: 7*a+b
Part 2: a-6*b+1
Part 3: (a-8)*(b+5)
and show the result of each computation.