age = int(input())
if age<0:
    print("Invalid input")
elif age<18:
    print("Not eligible")
else:
    print("Eligible")