Task 2: Age Validator

Write a program that asks the user for their age and determines whether they are eligible to vote (18 or older). Print an appropriate message.
Example Input/Output:

Input: 16 Output: You are not old enough to vote.
Input: 20 Output: You are eligible to vote.

Scroll to Top