Write a pseudo code, Features and represent the information on a flow chart that Display the following Fibonacci series using repetitive Control Structure.
0 1 1 2 3 5 8 13……
a=0;
b=1;
Display a
Display b
count=3
DO WHILE count<=MAX
sum=a+b
Display sum
a=b
b=sum
count=count+1