-- one times two is two, two times two is four, three times two is five, four ... INT n: INT current: INT multiple: [12]INT array: SEQ -- Choose which times table you want stdin ? multiple PAR n:=1 current:=multiple WHILE n<=12 SEQ array[n]:=current PAR current:=current+multiple n:=n+1 -- Now output the table SEQ n:=1 WHILE n<=12 SEQ stdout ! array[n] n:=n+1