from turtle import*
turtle=Turtle()
def polygon (length, N):
    for i in range (N):
        turtle.forward(length)
        turtle.left(360/N)
