#include using namespace std; int main() { int x{0}; cout << "Enter a value for x "; cin >> x; // if (x < 7) cout << "x is smaller than 7"; else cout << "x is greater than or equal to 7" ; // if (x < 7) { cout << "x is smaller than 7"; cout << "And that is good" << endl; } else { cout << "x is greater than or equal to 7" ; cout << "and that is even better " << endl; } cout << endl; return 0; }