Write a recursive function that
returns the sum of the values for all of the nodes of the
binary tree with root "root".
If the root is null, return 0.
Otherwise, just return the sum of the root value plus the result of the recursive calls on the children.