// Print a row of 80 stars. #include using namespace std; int main(){ for (int c = 1; c <= 80; c++) cout << "*"; cout << endl; return 0; }