# circle spiral
import turtle as t

t.speed(0)
t.bgcolor("blue")
t.pencolor("yellow")
for x in range(100):
    t.circle(x * 2)
    t.right(91)
t.setpos(60, 75)

for x in range(100):
    t.circle(x)
    t.right(91)