#include using namespace std; // illustrating output // using string literals, integer literals // and integer expressions int main () { cout << "integer = 12" << endl; cout << "integer = " << 12 << endl; cout << "product = " << "3 * 4" << endl; cout << "product = " << 3*4 << endl; cout << endl; cout << "That " << endl << "is " << endl << "all " << endl << endl << "folks!" << endl; return 0; }