import turtle
turtle.hideturtle()
turtle.penup()
turtle.goto(-100, -100)
turtle.pendown()
turtle.fillcolor("lightblue")
turtle.begin_fill()
for _ in range(4):
    turtle.forward(200)
    turtle.left(90)
turtle.end_fill()
turtle.penup()
turtle.goto(-120, 100)
turtle.pendown()
turtle.fillcolor("brown")
turtle.begin_fill()
turtle.goto(0, 200)
turtle.goto(120, 100)
turtle.goto(-120, 100)
turtle.end_fill()

