	.data
msg:
	.asciiz "Coucou!\n"

	.text

main:
	li $v0, 4
	la $a0, msg
	syscall	
	li $v0, 10
	syscall
