My task is to write a function named only_ints that takes two parameters. Your function should return True if both parameters are integers, and False otherwise.
For example, calling only_ints(1, 2) should return True, while calling only_ints("a", 1) should return False.
I'm confused. How do I apply type()? Because isinstance(False, int) outputs --> True