Control flow / Conditional statements / if/else statements

int A = 3;
int B = 5;
int C = 7;
if (C >= A && C >= B) {
    cout << "Nothing is larger than C.";
}
cout << endl;
if (!(A >= B || A >= C)) {
    cout << "A is the smallest.";
}