Create a function that returns true when num1 is equal to num2; otherwise return false.
Pay attention to the data type as well.
is_same_num(4, 8) ➞ False
is_same_num(2, 2) ➞ True
is_same_num(2, "2") ➞ FalseDon't forget to return the result.