CheckBool
	)

	#plot
	pyplot.plot(_RowInt,_ColInt,marker='o',color="blue" if CheckBool else "red")

#init
map(
	lambda __RowInt:
	map(
		lambda __ColInt:
		_set(__RowInt,__ColInt),
		xrange(LenInt)
	),
	xrange(LenInt)
)

#get
ContourIntsArray=SYS.contour(MyArray)

#plot
pyplot.plot(
	ContourIntsArray[:,0],
	ContourIntsArray[:,1],
	'-'
)

#plot
pyplot.show()