Verify Safe Box Password

A Python function to validate a given safe box password.

Your task is to write a Python function that validates whether a provided safe box password is correct. The pre-set password for the safe is `9527`. The function should return `True` if the provided password matches `9527`; otherwise, it should return `False`. ### Parameters - `password`: A integer value representing the input password for the safe box. ### Return Value - The function returns `True` if the input `password` matches `9527`; if the input does not match, it returns `False`. ### Examples ```python authentication(1234) # Returns: False authentication(9527) # Returns: True authentication(8888) # Returns: False ```