You are on page 1of 1

clc

n=25;
f=[1 1];
for i=3:n
f(i)=f(i-1)+f(i-2);
end
disp(f)

You might also like