from turtle import *
up()
goto(0,-200)
down()
circle(200)
up()
goto(-100,50)
down()
fillcolor('blue')
begin_fill()
circle(20)
end_fill()
up()
forward(200)
down()
begin_fill()
circle(20)
end_fill()
up()
goto(0,50)
down()
circle(-50,steps=3)
up()
# goto(0,-170)
# down()
# left(30)
# forward(150)
# up()
# goto(0,-170)
# left(120)
# down()
# forward(150)
goto(-150,-70)
down()
goto(0,-170)
goto(150,-70)
done()