def check_eligibility(age):
if age<0:
print("Invalid input")
elif age>=18:
print("Elgible")
else:
print("Not eligible")