Create a function that takes two integers and checks if they are equal.
is_equal(5, 6) ➞ False is_equal(1, 1) ➞ True is_equal("1", 1) ➞ False
If there is a string then it should return False.
False