Are the Numbers Equal?

Published by Joshua Señoron in

Create a function that returns True when num1 is equal to num2; otherwise return False.

Examples

is_same_num(4, 8) ➞ False

is_same_num(2, 2) ➞  True

is_same_num(2, "2") ➞ False

Notes

Don't forget to return the result.

Watch a quick demo on how Edabit works.