age =int(input())
if age<0:
print("invalid input")
elif age>=18:
print("eligible")
else:
print("not eligible")