Please Don't Do This
class Main {
public static void main(String[] args) {
int i = 3;
if (i > 3)
if (i > 2) {
System.out.println("Greater than two!");
} else {
System.out.println("Less than or equal to two!");
}
}
}INFO