from turtle import *
bgcolor('black')
hideturtle()
color('#4285F4','#4285F4')
pensize(5)
speed(4)
fd(120)
rt(90)
circle(-150,50)
color('#0F9D58')
circle(-150,100)
color('#F4B400')
circle(-150,60)
color('#E74C3C')
begin_fill()
circle(-150,100)
rt(90)
fd(50)
rt(90)
circle(100,100)
rt(90)
fd(50)
end_fill()
begin_fill()
color("yellow")
rt(180)
fd(50)
rt(90)
circle(100,60)
rt(90)
fd(50)
rt(90)
circle(-150,60)
end_fill()
rt(90)
fd(50)
rt(90)
circle(100,60)
color('#1E8449')
begin_fill()
circle(100,100)
rt(90)
fd(50)
rt(90)
circle(-150,100)
rt(90)
fd(50)
end_fill()
rt(90)
circle(100,100)
color('#2874A6')
begin_fill()
circle(100,25)
lt(115)
fd(65)
rt(90)
fd(42)
rt(90)
fd(124)
rt(90)
circle(-150,50)
rt(90)
fd(50)
end_fill()
penup()
color('white')
rt(10)
fd(350)
write('Google',font=('arial',15,'normal'))
done()