Actually, my task is to multiply two 32bits number in MIPS which then generate the output of 64bits. Least significant 32bits are to be saved in 'lo' register and the remaining in 'hi' register to my understanding.
When I multiply 100000 and 200000 I get a817c800 in 'lo' register and 4 in 'hi' register
mult $t1, $t2
mflo $s0
mfhi $s1