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