0 / 60 seg.

Consider the use of complex conditions in this Java code:

int age = 25;
if (age >= 18 && age <= 30) {
    System.out.println("You are between 18 and 30");
}