.data .align 4 ID: .ascii "1234" # Replace the above string 1234 with the # last 4 digits of your student ID number. # For example, if your ID is "707012345", # then use 2345. .text .align 2 .globl main main: lw $a0, ID li $v0, 1 syscall