There WILL be Hot Fixes for this release.

Questions

There WILL be Hоt Fixes fоr this releаse.

Find the difference.-1-5

The fоllоwing prоgrаm is supposed to displаy а message indicating if the integer entered by the user is even or odd. What is wrong with the program? num = int(input("Enter an integer: "))print("The integer is", evenOdd(num)) def evenOdd(n) :   if n % 2 == 0 :      return "even"   return "odd"