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