diff --git a/Conditional Statements in Python: Even or Odd Checker.md b/Conditional Statements in Python: Even or Odd Checker.md deleted file mode 100644 index 2b62af3d1..000000000 --- a/Conditional Statements in Python: Even or Odd Checker.md +++ /dev/null @@ -1,18 +0,0 @@ -# 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 -1. Get an input from the user. -2. Convert the input to an integer and store it in a variable `a`. -3. Use the modulo operator `%` to check if `a % 2 == 0`. - - If true, print `"EVEN"`. - - Else, print `"ODD"`. -4. End the program. - -## 🧾 Program - -## Output - -## Result diff --git a/README.md b/README.md new file mode 100644 index 000000000..8b1378917 --- /dev/null +++ b/README.md @@ -0,0 +1 @@ +