	.data		# data segment
str:
	.asciiz "the answer = "
	.text		# text segment
	.globl main
main:
	li $v0, 4	# 4 = print str syscall
	la $a0, str	# load address of string
	syscall		# execute the system call

	li $v0, 1	# 1 = print int syscall
	li $a0, 5	# load int value 5
	syscall		# execute the system call 


