import turtle
p = turtle.Turtle()
p.speed(0)
for i in range(300):
    p.forward(i*2)
    p.right(90+1)
turtle.done()