// editor2
#include<stdio.h>
int main()
{
    int age;
    scanf("%d",&age);
    
    if(age>=18)
    {
        printf("ELIGIBLE");
    }
    else if(age<18);
    {
        printf("NOT ELIGIBLE");
    }
    else
    {
        printf("INVALID INPUT");
    }
    return 0;
     
}