class BinaryIntNode {
    int key;
    BinaryIntNode left;
    BinaryIntNode right;
}

