#include #include #include using namespace std; const string A_LINE{"Hello I am A line"}; int main () { string aSecondLine{"Hello I am a second line " }; int gallonsOfSap{544}; float gallonsOfSyrup{0}; string name; cout << "Hello World" << endl; cout << A_LINE << endl; cout << aSecondLine << endl; cout << -7+15 << endl; cout << "There are " << gallonsOfSap << " gallons of sap " << endl; cout << "There are " << gallonsOfSap/40 << " gallons of syrup " << endl; gallonsOfSyrup = gallonsOfSap/40.0; cout << "There are " << gallonsOfSyrup << " gallons of syrup " << endl; cout << endl; cout << setw(13) << "12345678901234567890" << endl; cout << setw(23) << "12345678901234567890" << endl; cout << setw(33) << "12345678901234567890" << endl; cout << setw(43) << "12345678901234567890" << endl; cout << "12345678901234567890" << endl; cout << endl << endl; cout << "What is your name? =>"; cin >> name; cout << endl; return 0; }