#include<stdio.h>
int main()
{
    int age;
    scanf("%d",age);
    if(age>=18)
    {
        printf("you are eligible for voting");
    }
    return 0;
}