import turtle as t

t.shape('turtle')

t.bgcolor("white")

t.pensize(3)

t.pencolor("black")

t.speed(20)

t.penup()

t.goto(10,5)

t.pendown()

t.fillcolor("red")

t.begin_fill()

t.backward(20)

t.right(90)

t.forward(10)

t.left(90)

t.forward(20)

t.left(90)

t.forward(10)

t.end_fill()



t.penup()

t.goto(150,0)

t.pendown()

t.fillcolor("white")

t.begin_fill()

t.circle(150,360)

t.end_fill()




t.penup()

t.goto(125,0)

t.pendown()

t.fillcolor(245,222,179)

t.begin_fill()

t.circle(25,360)

t.end_fill()




t.penup()

t.goto(-75,0)

t.pendown()

t.circle(25,360)



t.penup()

t.goto(70,20)

t.pendown()

t.forward(50)

t.circle(20,180)

t.forward(50)

t.circle(20,180)



t.penup()

t.goto(-20,20)

t.pendown()

t.forward(50)

t.circle(20,180)

t.forward(50)

t.circle(20,180)


t.penup()

t.goto(60,30)

t.pendown()

t.forward(30)

t.circle(10,180)

t.forward(30)

t.circle(10,180)


t.penup()

t.goto(-30,30)

t.pendown()

t.forward(30)

t.circle(10,180)

t.forward(30)

t.circle(10,180)


t.penup()

t.goto(70,100)

t.pendown()

t.circle(15,180)


t.penup()

t.goto(-20,100)

t.pendown()

t.right(180)

t.circle(15,180)






t.penup()

t.goto(-50,-20)

t.pendown()

t.circle(50,180)

t.penup()

t.goto(-70,-40)

t.pendown()

t.right(180)

t.circle(70,180)

t.penup()

t.goto(-50,-20)

t.pendown()

t.circle(11,180)

t.forward(20)


t.penup()

t.goto(150,0)

t.pendown()

t.circle(50,270)

t.right(180)

t.circle(60,180)

t.right(180)

t.circle(50,180)

t.right(90)

t.circle(40,200)

t.left(180)

t.circle(60,120)

t.left(270)

t.circle(50,100)

t.left(270)

t.circle(70,180)

t.left(180)

t.circle(80,220)


t.penup()

t.goto(70,-40)

t.pendown()

t.left(90)

t.forward(17)

t.circle(11,145)

t.hideturtle()