Control flow / Conditional statements / if/else statements

int A = 3;
int B = 5;
int C = 7;
if (C >= A && C >= B) {
    System.out.println("nothing is larger than C.");
}
if (!(A >= B || A >= C)) {
    System.out.println("A is the smallest");
}