#include <iostream>
using namespace std
int main ()

{
cout<<"please input the size of the square");
cin>>("%d";& size);

for(int i=0;i<size;i++)
{
for(int j=0;j<size;j++)
{
cout<<("*");
}
cout<<("\n");
}
return 0;
...