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