It prints first number.
Second number is negative and its value is: -1744764930
Explanation:
Required code is below.
========================================================================
.data
data1: .word 0x0001ead7
data2: .word 0x9800fffe
.text
main: # load first number in to register $a0
lw $a0, data1
# if number is positive print it out
bgez $a0, print
# load second number in to register $a0
second: lw $a0, data2
# if number is positive print it out
bgez $a0, print
# end program
li $v0, 10
syscall
print: # print the given number
li $v0, 1
syscall
# go back to main program
j second