Create a C++ Binary Search Tree that will accept integers in this order: 35, 18, 48, 72, 60, 25. Ask user for input and search tree utilizing integer input. Return "True" if input integer is found or "False" if it is not found in tree.
Example output of the program should look like following.
Enter Integer to search for: 12
False
Enter Integer to search for: 60
True