Submission
Status:
--------------------
Subtask/Task Score:
0/100
Score: 0
User: solarsunny
Problemset: Femboy
Language: cpp
Time: 0.014 second
Submitted On: 2025-10-05 14:51:18
#include <bits/stdc++.h>
using namespace std;
string word1 ="##### ##### # # #### ##### # #";
string word2 ="# # ## ## # # # # # # ";
string word3 ="##### ##### # # # #### # # # ";
string word4 ="# # # # # # # # # ";
string word5 ="# ##### # # #### ##### # ";
void fill(int l, string w) {
for(int h=0;h<l;h++) {
for(int i=0; i<36; i++) {
if(w[i] == '#') {
for(int a=0; a<l; a++) {
cout << "#";
}
} else if(w[i] == ' ') {
cout << " ";
}
}
cout << "\n";
}
return;
}
int main() {
ios_base::sync_with_stdio(false);
cin.tie(NULL);
int l;
cin >> l;
fill(l,word1);
fill(l,word2);
fill(l,word3);
fill(l,word4);
fill(l,word5);
return 0;
}