Age Verification System

Easy
#logic #compliance

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