import java.io.BufferedReader; import java.io.InputStreamReader; class Vote { public static void main(String[] args) throws java.io.IOException { int age; System.out.println("input amount:"); BufferedReader input = new BufferedReader(new InputStreamReader(System.in)); age = Integer.parseInt(input.readLine()); if (age > 18){ System.out.println("you can vote"); } else { System.out.println("you cannot vote"); } } } //By msglm; Licensed under the AGPL v3