#!/bin/bash

# Prompt the user for age input
read -p "Enter your age: " age

# If-Else statement
if [[ "$age" > "17" ]]; then
    echo "You are eligible to vote."
else
    echo "You are not eligible to vote yet."
fi
