#include
using std::cout;
int main()
{
int k = 7;
while (k != 0)
{
if (k == 7)
cout << ' ';
else if (k == 1)
cout << ' ';
else
cout << '*';
k--;
}
cout << '\n';
for (int i = 1; i <= 2; i++)
{
k = 7;
while (k != 0)
{
if (k == 7 || k == 1)
cout << '*';
else
cout << ' ';
k--;
}
cout << '\n';
}
k = 7;
while (k != 0)
{
if (k == 7)
cout << ' ';
else if (k == 1)
cout << ' ';
else
cout << '*';
k--;
}
cout << '\n';
k = 7;
for (int i = 1; i <= 2; i++)
{
k = 7;
while (k != 0)
{
if (k == 7 || k == 1)
cout << '*';
else
cout << ' ';
k--;
}
cout << '\n';
}
k = 7;
while (k != 0)
{
if (k == 7)
cout << ' ';
else if (k == 1)
cout << ' ';
else
cout << '*';
k--;
}
}