eolymp
bolt
Try our new interface for solving problems
Problems

#Rectangle 2

published at 2/15/24, 6:43:13 am

include <bits/stdc++.h>

using namespace std; int main() { int n,k,i; cin>>n; for(i=1; i<=4; i++) { for(k=1; k<=n; k++) { cout<<'#'; } cout<<endl; } }