/******************************************************************************
Welcome to GDB Online.
GDB online is an online compiler and debugger tool for C, C++, Python, Java, PHP, Ruby, Perl,
C#, OCaml, VB, Swift, Pascal, Fortran, Haskell, Objective-C, Assembly, HTML, CSS, JS, SQLite, Prolog.
Code, Compile, Run and Debug online from anywhere in world.
*******************************************************************************/
public class Main {
static Boolean A() {
System.out.println("A");
return true;
}
static Boolean B() {
System.out.println("B");
return true;
}
static Boolean C() {
System.out.println("C");
return true;
}
static Boolean D() {
System.out.println("D");
return true;
}
static Boolean E() {
System.out.println("E");
return true;
}
public static void main(String[] args) {
Boolean X = A() ? B() ? C() : D() : E() ;
}
}