b = 100 print 1;".";b;", "; for c = 2 to 5 b = b-c print b; if c<5 then print ", "; else print " " next c print 2;"."; for c = 1 to 3 print 5^c; if c<3 then print ", "; else print " " next c b = 1 print 3;".";b;", "; for c = 1 to 4 b = b+c print b; if c<4 then print ", "; else print " " next c 'Edwin