Write and debug a MIPS program that performs the following operations:
• Prompt for and input two integers "a" and "b" using syscalls
• Compute
1. 7*a+b
2. a-6*b+1
3. (a-8)*(b+5)
and display the result of each computation.
• Return to the operating system.