Single choice. The following two tables are for 32 MIPS inte…

Single choice. The following two tables are for 32 MIPS integer registers and QtSpim I/O syscalls. What will be displayed as output when the following MIPS assembly program executes? If needed, you can reference MIPS Green Sheet.     .text    .globl mainmain: li $8,1 li $9,5L1:    slt     $10,$zero,$9        beq     $10,$zero,L2        mult    $8,$9        mflo    $8        addiu   $9,$9,-1        j       L1L2:     move    $a0,$8        li   $v0,1        syscall       jr $31