#! /bin/bash read -p "enter the name"N read -p "enter the age" A if ((A<18)); then echo "You are a minor,$N" elif(((A>=18))&&((A<=64))); then echo "You are an adult,$N" else echo"You are a senior,$N" fi