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