Print integers as strings in mips programs

49 Views Asked by At

This is my python code and I need to convert this to MIPS

Print (“Enter two numbers here:”)
a = int (input())
b = int (input())
sum=a+b

print(“sum is =” + str (sum))

I am having difficulty in trying to print int values (which I get as input) as strings. Please help.

0

There are 0 best solutions below