Age Verification System
Input: `age` (int). Return: 'Eligible' if age >= 18, else 'Not Eligible'.
Example
Input: 18
Output: 'Eligible'
Need a hint?
- Eligible if age is 18 or more
Run your code to see output
Input: `age` (int). Return: 'Eligible' if age >= 18, else 'Not Eligible'.
Input: 18
Output: 'Eligible'
Run your code to see output