Practice Interview Questions
| Question | Status |
|---|---|
Write a Python function that takes a number as input and checks whether the given number is odd or even. Print "Even" if the number is even, and print "Odd" if the number is odd.
Example:
Input: 4
Output: "Even"
Input: 7
Output: "Odd"