# Inspired by "Georgia's Spirals"

from turtle import *


forward(50)       # moves 50 units, now at (50, 0)
right(90)         # turns 90 degrees (now facing down)
forward(50)       # moves 50 units, now at (50, -50)
right(90)         # turns 90 degrees (now facing right)
forward(50)       # moves 50 units, now at (0, -50)
right(90)         # turns 90 degrees (now facing up)
forward(50)       # moves 50 units, now at (0, 0)
right(90)         # turns 90 degrees (now facing right)
done()       # stops drawing, must be placed last!