﻿from pylab import *
x=0
y=0
while x<=10 and y<=10:
    plot(x,y,'r.')
    x=x+random()
    y=y+random()
show()

