From e7d407904a78c0eca0cda667e0006ef429cd3edf Mon Sep 17 00:00:00 2001 From: roshnianand1982-code Date: Mon, 8 Jun 2026 21:56:41 +0530 Subject: [PATCH] Update Conditional Statements in Python: Even or Odd Checker.md --- Conditional Statements in Python: Even or Odd Checker.md | 8 ++++++++ 1 file changed, 8 insertions(+) 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