Are the Numbers Equal?

Published by JJCUBER in

Create a function that takes two integers and checks if they are equal.

Examples

IsEqual(5, 6) ➞ false

IsEqual(1, 1) ➞ true

IsEqual(36, 35) ➞ false

Notes

N/A

Watch a quick demo on how Edabit works.