How do i compare two boolean values without declaring variable?

i’m new to programming so i need help with this
public class EqualityOperators {
public static void main(String args) {

	System.out.println(True == False);

}

}

Use an if-statement.