﻿from pylab import *

for x in range(0,6):
    for y in range(0,6):
        if -x*(5-x)+y**2>0:
            plot(x,y,"r.")
show()

