#include <iostream>
using namespace std;
int main (){
    int number;
    cout<< "enter an number: ";
    cin >> number;
    if(number>=18){
    cout<< number <<"eligible to vote ."<<end1;
    }else{
         cout<< number <<" not eligible to vote ."<<end1;
    }
    return 0;
}