import turtle as t
def c():
global b
t.circle(b)
b+=10
def bf():
t.begin_fill()
def ef():
t.end_fill()
pic=input("그림을 보려면 1을 입력 : ")
if pic=="1":
a=1
t.screensize(500,500)
t.bgcolor("steelblue")
t.colormode(255)
t.speed(3)
t.pensize(3)
t.speed(0)
t.penup()
t.goto(-1000,0)
t.pendown()
t.color(121,178,205)
t.begin_fill()
for a in range(2):
t.forward(2000)
t.left(90)
t.fd(600)
t.left(90)
ef()
t.penup()
t.goto(0,0)
t.pendown()
t.color(60,129,162)
bf()
t.circle(1800)
ef()
t.color(1,101,127)
bf()
t.circle(800)
ef()
t.color(0,67,84)
bf()
t.circle(400)
ef()
t.color(0,53,69)
bf()
t.circle(300)
ef()
t.color(70,60,108)
bf()
t.circle(250)
ef()
t.color(133,68,100)
bf()
t.circle(200)
ef()
t.color(178,85,114)
bf()
t.circle(180)
ef()
t.color(237,108,126)
bf()
t.circle(150)
ef()
t.color(254,129,133)
bf()
t.circle(120)
ef()
t.color(253,182,152)
bf()
t.circle(90)
ef()
t.color(249,209,142)
bf()
t.circle(70)
ef()
t.pensize(3)
for z in range(50):
t.color(251,111,64)
t.circle(a)
a+=1
b=3
t.pensize(2)
t.right(180)
for z in range(10):
t.color(255,174,77)
c()
for z in range(20):
t.color(253,241,187)
c()
for z in range(70):
t.color(100,166,238)
c()
t.color("black")
t.pensize(3)
t.penup()
t.goto(100,110)
t.pendown()
t.right(90)
t.circle(8,180)
t.right(180)
t.circle(8,180)
t.penup()
t.goto(60,130)
t.pendown()
t.right(180)
t.circle(5,180)
t.right(180)
t.circle(5,180)
t.color("white")
t.penup()
t.right(180)
t.goto(-180,0)
t.pendown()
bf()
t.circle(60,180)
ef()
t.right(180)
t.goto(-230,0)
bf()
t.circle(100,180)
ef()
t.right(180)
t.goto(-330,0)
bf()
t.circle(150,180)
ef()
t.penup()
t.right(180)
t.goto(290,0)
t.pendown()
bf()
t.circle(55,180)
ef()
t.goto(435,0)
t.right(180)
bf()
t.circle(95,180)
ef()
t.goto(600,0)
t.right(180)
bf()
t.circle(145,180)
ef()