>m=9 function TIC() t=time()/80 if btnp(3) then m=m+1 end if btnp(2) then m=m-1 end m=math.max(1,m) cls() for x=0,239 do for y=0,135 do a=x/2+t*2 b=y/2+t c=(a//1~b//1)%m if c==0 then pix(x,y,12) end end end print("(x^y)%"..m,80,60,10,false,2) end