
import heron 
import math


def main():
    TEST = 2
    EPSILON = .000001
    print('Heron answer: ', heron.root_approx(TEST, EPSILON))
    print('Math answer: ', math.sqrt(TEST))

main()
