Output: Upon searching for value x in your 2-3 tree, if
the value is not in the tree, your search for it should terminate in a
leaf node of your tree. In this case, your output should be the
integer contents of that leaf. If there are two keys in that leaf,
first print the smaller value, then the larger, with a single space
separating them. If there is only one key value, simply print that
single value. For each search item, the output should take one line.
If the value x is found in the tree, print the contents of
its node, whether or not it is a leaf, using the same format as above.