#include #include using namespace std; int main() { int x,y; for (x = 0;x<10;x++) { for (y = 0;y<10;y++) { cout << "*"; } cout << endl; } return 0; }