Write a for loop that calculates the first 35 numbers of the Fibonacci Sequence.
The Fibonacci Sequence is a famous sequence, where the value of each number in the list is the sum of the two before it. The first 5 numbers in the Fibonacci
Sequence are 0, 1, 1, 2, and 3. As such, any value in element $n$ of the sequence, is the sum of element $n-1$ and element $n-2$.
Create a row vector named \texttt{fib} that contains the sequence of numbers.
Hint: You might want to start your loop at the 3rd element in \texttt{fib}. For the Fibonacci to work, you must know the first 2 digits in the sequence ahead of
time.
DO NOT just fill your vector in manually by figuring out the sequence and manually the array. You MUST use a loop in order to do this.