Conditional Statements in Python: Even or Odd Checker 🎯 Aim To write a Python program to check whether the given number is even or odd using if...else statements.
🧠Algorithm Get an input from the user. Convert the input to an integer and store it in a variable a. Use the modulo operator % to check if a % 2 == 0. If true, print "EVEN". Else, print "ODD". End the program. 🧾 Program Output Result