#include using namespace std; int main() { for (int i = 0; i < 10; i++) { for (int j = 0; j < 15; j++) { cout << "* "; } cout << '\n'; } return 0; }