Problem:
Question-Write a MIPS program to input a sequence of integers, terminated by 0, and print-out the sum of all the numbers. Document the program with the program name, what the program does, your name, and document the sections of the program where certain activities are done. Sample input should look like the following:
Input Integer: 5
Input Integer: 4
Input Integer: -7
Input Integer: 111
Input Integer -234
Input Integer: 0
The sum of all the integers is: 121
Please show the coding of a MIPS program to input a sequence of integers.