100621: [AtCoder]ABC062 B - Picture Frame

Memory Limit:256 MB Time Limit:2 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Score : $200$ points

Problem Statement

You are given a image with a height of $H$ pixels and a width of $W$ pixels. Each pixel is represented by a lowercase English letter. The pixel at the $i$-th row from the top and $j$-th column from the left is $a_{ij}$.

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

Constraints

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

Input

Input is given from Standard Input in the following format:

$H$ $W$
$a_{11}$ $...$ $a_{1W}$
$:$
$a_{H1}$ $...$ $a_{HW}$

Output

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


Sample Input 1

2 3
abc
arc

Sample Output 1

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

Sample Input 2

1 1
z

Sample Output 2

###
#z#
###

Input

题意翻译

## 题目描述 给出一个长H,宽W的图像,用小写字母表示。第i行第j个字母是a(i,j)。 输出该图像最外层用一个'#'包围后的图像 ## 输入格式 输入将会按照以下格式: ``` H W a(1,1) ... a(1,W) ... a(H,1) ... a(H,W) ``` ## 输出格式 输出该图像最外层用一个'#'包围后的图像 ## 说明/提示 1 $\le$ H,W $\le$ 100 a(i,j)是一个小写字母

加入题单

算法标签: