int x = 10; if (x > 15) if (x < 20) System.out.println("A"); else System.out.println("B");
,
Compilation error
No output
B
A