import turtle
import time
turtle.bgcolor("red")
turtle.pencolor("yellow")
turtle.fillcolor("yellow")
turtle.setup(700, 500)
def lgoto(x,y):
turtle.up()
turtle.goto(x,y)
turtle.down()
def draw(d):
turtle.begin_fill()
for _ in range(5):
turtle.forward(d)
turtle.right(144)
turtle.end_fill()
lgoto(-300,130)
draw(100)
lgoto(-170,200)
draw(50)
lgoto(-110,150)
draw(50)
lgoto(-110,90)
draw(50)
lgoto(-170,30)
draw(50)
turtle.hideturtle()
turtle.done()