#include <bits/stdc++.h>
using namespace std;

int main() {
	// your code goes here
	int n =5;
	
	for(int i=1;i<=n+4;i++){
		for(int j=1;j<=n;j++){
			if(j==n){
				cout<<"#";
			}
		}
		cout<<endl;
		
	}
	
	
	return 0;
}