import turtle
t = turtle.Pen()
t.speed(0)
t.fillcolor("orange")
t.begin_fill()
for i in range(4):
t.fd(150)
t.left(90)
t.end_fill()
t.left(90)
t.fd(150)
t.right(45)
t.fillcolor('brown')
t.begin_fill()
t.fd(106)
t.right(90)
t.fd(106)
t.end_fill()
t.up()
t.right(135)
t.fd(50)
t.left(90)
t.fd(50)
t.down()
t.fillcolor("grey")
for n in range(4):
t.begin_fill()
for i in range(4):
t.fd(25)
t.right(90)
t.end_fill()
t.fd(50)
t.right(90)
t.hideturtle()
turtle.mainloop()