﻿from pylab import *

def Solution(N,h):
    x=0
    y=0
    plot(x,y,'r.')
    for i in range(1,N):
        x=
        y=
        plot(x,y,'r.')
    show()
    return








