#include using namespace std; int main() { int x{7}; cout << "Enter x =>" ; cin >> x; if (x < 7) { cout << "x is small" << endl; cout << "See it really is small" << endl; } else { cout << "x is not small " << endl; cout << "See it really is big" << endl; } return 0; }