Implement a sum function that takes a tree and returns the sum of the numbers in the tree. Example: (sum (node 5 (leaf 6) (leaf 7))) should produce 18. Part 2 — Negate Implement the function negate, ...