﻿from pylab import *

def U(n):
    u=1
    plot(0,u,'r.')
    for i in range(n):
        u=
        plot(i,u,'r.')
    show()
    return





