Given an integer n, output the following ASCII art to n rows:
1+1=2 1+2=3 2+3=5 3+5=8 5+8=13 Essentially, the first row is 1+1=2 and the nth row (1-indexed) is \$f_n + f_{n+1} = f_{n+2}\$ where \$f\$ is the Fibonacci sequence, padded so the numbers line up with the previous row.
You may instead output it infinitely. You may output a list of lines.
This is code-golf, shortest wins!
Testcase
The output for 20 should be:
1+1=2 1+2=3 2+3=5 3+5=8 5+8=13 8+13=21 13+21=34 21+34=55 34+55=89 55+89=144 89+144=233 144+233=377 233+377=610 377+610=987 610+987=1597 987+1597=2584 1597+2584=4181 2584+4181=6765 4181+6765=10946 6765+10946=17711