(10 pts) Write a function called isInBetween that takes 3 ints,say n, low and high, and returns a boolean; the function returnstrue if the first parameter (n) is between the second and thirdparameters (low and high, INCLUSIVE), and false otherwise. Cansafely assume that low is lower than high.