#include <iostream>

int main() 
   int n;
   std::cin << "enter the age:"; 
   std::cin >> n;
   if(n>=18){
      std::cout << n << "eligiable to vote"<< std::endl;
    }else{
    std::cout << n << "not eligiable" << std::endl;
        
    }
return 0;
}