what is the output of the following code? def evenOdd(n): if n % 2 == 0: print("even") else: print("odd") evenOdd(2) evenOdd(3)