Problem6500--打印栅格

6500: 打印栅格

[Creator : ]
Time Limit : 1.000 sec  Memory Limit : 256 MiB

Description

给定两个整数 $n$ 与 $m$,请打印一个 $n$ 行 $m$ 列的栅格网络。
具体格式参看样例数据。

Input

两个整数:表示 $n, m\ (1 \leq n, m \leq 100)$。

Output

根据题意输出规模为 $n\times m$ 的栅格网络。

Sample 1 Input

2 3

Sample 1 Output

+-+-+-+
| | | |
+-+-+-+
| | | |
+-+-+-+

Sample 2 Input

4 5

Sample 2 Output

+-+-+-+-+-+
| | | | | |
+-+-+-+-+-+
| | | | | |
+-+-+-+-+-+
| | | | | |
+-+-+-+-+-+
| | | | | |
+-+-+-+-+-+

Source/Category