# drawing.py
# ----------
# By Stacy S
#
# (Trying to draw a tree.)
from turtle import *
from math import sqrt
from shapes import *
draw_tree(20)
input()