from turtle import *
pensize(10)
color("brown")
left(90)
forward(80)
begin_fill()
right(90)
color("green")
circle(50)
end_fill()
done()

