# square spiral
import turtle as t

t.speed(0)
t.bgcolor("blue")
t.pencolor("yellow")
for x in range(200):
    t.forward(x)
    t.right(91)
