
import turtle
t=turtle.Turtle()
t.speed(1)
t.goto(0,200)
t.fillcolor("green")
t.begin_fill()
t.penup()
t.goto(-50,0)
t.pendown()
t.goto(50,0)
t.goto(50,-25)
t.goto(-50,-25)
t.goto(-50,0)
t.end_fill()
t.fillcolor("yellow")
t.begin_fill()
t.penup()
t.goto(0,-100)
t.pendown()
t.circle(30)
t.end_fill()
t.fillcolor("red")
t.begin_fill()
t.penup()
t.goto(-50,-25)
t.pendown()
t.goto(-150,-75)
t.goto(150,-75)
t.goto(50,-25)
t.goto(-50,-25)
t.end_fill()
turtle.done()