Write a MIPS assembly language program to recursively compute the nth term of Perrin's sequence. n will be input from the keyboard. And please do not copy and paste from google results because I have already tried searching there.
For example;
Enter non negative integer: 5
Output;
P(5) = 5
Enter nonnegative integer: 12
Output:
P(12) = 29