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