#abc062b. [abc062_b]Picture Frame

[abc062_b]Picture Frame

Problem Statement

You are given a image with a height of HH pixels and a width of WW pixels. Each pixel is represented by a lowercase English letter. The pixel at the ii-th row from the top and jj-th column from the left is aija_{ij}.

Put a box around this image and output the result. The box should consist of # and have a thickness of 11.

Constraints

  • 1H,W1001 ≤ H, W ≤ 100
  • aija_{ij} is a lowercase English letter.

Input

Input is given from Standard Input in the following format:

HH WW a11a_{11} ...... a1Wa_{1W} :: aH1a_{H1} ...... aHWa_{HW}

Output

Print the image surrounded by a box that consists of # and has a thickness of 11.


Sample Input 1

2 3
abc
arc

Sample Output 1

#####
#abc#
#arc#
#####

Sample Input 2

1 1
z

Sample Output 2

###
#z#
###