Write a function that checks whether a person can watch an MA15+ rated movie. One of the following two conditions is required for admittance:
The function accepts two parameters, age and is_supervised. Return a boolean.
accept_into_movie(14, true) ➞ true
accept_into_movie(14, false) ➞ false
accept_into_movie(16, false) ➞ trueage is a decimal.is_supervised is a boolean.