#include<iostream>
using namespace std;
int main()
{
int j;
int i;
char a[37] = "*II**&&&&&&**IIII**&&&&**IIIIII**&&*";
for (i = 0; i <= 36; i++)
cout << a[i];
cout << endl;
cout << "jeden wybrany znak"<<endl;
cout << "Podaj numer do wyswietlenia"<<endl;
cin >> j;
cout << a[j - 1] << endl;
return 0;
}