diff --git a/Conditional Statements in Python: Even or Odd Checker.md b/Conditional Statements in Python: Even or Odd Checker.md index 2b62af3d1..99e94f7e3 100644 --- a/Conditional Statements in Python: Even or Odd Checker.md +++ b/Conditional Statements in Python: Even or Odd Checker.md @@ -12,7 +12,15 @@ To write a Python program to check whether the given number is **even** or **odd 4. End the program. ## 🧾 Program +``` +a=int(input()) +if(a%2==0): + print("EVEN") +else: + print("ODD") +``` ## Output +image ## Result