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.