To print the fibonacci series

Normal Program
CLS
a = 1
b = 1
PRINT a;
PRINT b;
FOR i = 1 TO 8
    c = a + b
    PRINT c;
    a = b
    b = c
NEXT i
END