﻿from pylab import *

x=-2
y=4
for k in range(0,21):
    plot(x,y,'r.')
    x=x+0.2
    y=x**2

show()

