import turtle
pen=turtle.Pen()
pen.shape("turtle")
for i in range(5):
    pen.forward(200)
    pen.left(144)
turtle.done()