echo Enter the number
read n
i=0
b=1
a=0
echo " The fibonaci series is :"
while [ $i -lt $n ]
do
echo $b
b=`expr $a + $b`
a=`expr $b - $a`
i=`expr $i + 1`
done
echo Enter the number
read n
i=0
b=1
a=0
echo " The fibonaci series is :"
while [ $i -lt $n ]
do
echo $b
b=`expr $a + $b`
a=`expr $b - $a`
i=`expr $i + 1`
done