#include using namespace std; int main() { int x {1}; if (x < 10) { cout << "X is small" << endl; cout << "It really is small " << endl; } else { cout << "X is big" << endl; cout << "It really is big " << endl; } return 0; }