#include <iostream>
using namespace std;
int main() 
{
    int age;
    cout<< "enter the age: ";
    cin >> age;
    if(age>=18)
    {
        cout<< age << " eligible "<<end1;
    }
    else
    {
        cout << age << " not eligible "<<endl;
     }
return 0;
}