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