import
java.util.*;
public static
void main(String args[]){
Scanner sc= new
Scanner(System.in);
System.out.println("Please
enter your age");
int age=
sc.nextInt();
if(age>18)
System.out.println("You are eligible for voting");
else
System.out.println("You are not eligible for voting");
}}