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