#include #include using namespace std; int main() { int i {10}; //Need {curly braces} around the body of this if statement: if (i > 0) { cout << i << " is positive\n"; cout << "-- -- --------\n"; //underline } //Don't need {curly braces} around the body of this if statement: if (i > 0) { cout << i << " is positive\n"; } //So you could write the above if statement as follows: if (i > 0) cout << i << " is positive\n"; return EXIT_SUCCESS; }