import turtle as tl

b=50
for j in range(100):
	for i in range(4):
		tl.forward(b)
		tl.rt(90)
	tl.rt(10)
	tl.fd(20)
	b+=5


tl.done()
