import proveit
# Prepare this notebook for defining the common expressions of a theory:
%common_expressions_notebook # Keep this at the top following 'import proveit'.
from proveit.numbers.numerals.numeral import Numeral
%begin common
zero, one, two, three, four, five, six, seven, eight, nine = [Numeral(n) for n in range(10)]
hexa, hexb, hexc, hexd, hexe, hexf = [Numeral(10+n, chr(ord('a') + n)) for n in range(6)]
%end common