setscreen("graphics")
var x,y,c: int
randomize
loop
	randint(x,0,300)
	randint(y,0,300)
	randint(c,1,3)
	drawdot(x,y,c)
end loop
