Trace the algorithm described by the flowchart below and determine the values of R1 and R2 in each loop at the conditional points (A and B in flowchart). Create a table like the one below listing these values through each loop until the program reaches 'exit'. Also, list the number of times the loop will execute and the final values of R1 and R2 when the program exits.
R13 R20
R1 R1-1
ADD
R2 R2+1
R2 < R2+R1
4
loop 1
A: R1, R2
B: R1, R2
R1 0
return
ADD
B R2 6
2
R1 R1+3
exit
exit