Create a function that takes two integers and checks if they are equal.
IsEqual(5, 6) ➞ false IsEqual(1, 1) ➞ true IsEqual(36, 35) ➞ false
N/A