Make a function that returns an int boolean opposite of an int boolean given (flip the int boolean).
flipIntBool(1) ➞ 0 flipIntBool(0) ➞ 1
N/A