Control flow / Conditional statements / if/else statements

let a = 3;
let b = 5;
let c = 7;
if c >= a && c >= b {
    println!("Nothing is larger than C.");
}
if !(a >= b || a >= c) {
    println!("A is the smallest.");
}