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