Given a binary tree root node, find the sum of all the leaf nodes.Traverse the tree and check if node is leaf or not.If it's a leaf, add its value to the sum.Finally, output the sum of all leaf nodes.