﻿from pylab import *
from math import *

x=0
y=0
for k in range(0,11):
    plot(x,y,'r.')
    x=x+0.2
    y=sqrt(x)

show()


