Question: Write and debug a MIPS program that performs the given 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
Compute
1. 7*a+b
2. a-6*b+1
3. (a-8)*(b+5)
and display the result of each computation.
You need to prepare a program to write and debug a MIPS program.