1. Assume that a given BST stores integer values in its nodes. Write a recursive function that traverses a binary tree, and prints the value of every node who's grandparent has a value that is a multiple of five.
2. Write a recursive function that traverses a binary tree, and prints the value of every node which has at least four great-grandchildren.