8579: Icon Design

内存限制:256 MB 时间限制:1 S 标准输入输出
题目类型:传统 评测方式:文本比较 上传者:
提交:3 通过:2

题目描述

What's the feeling of designing an icon for a school as a programmer? Now you have a chance doing it!

The icon of Nanjing Foreign Language School (NFLS for short) is not complicated, it can be represented as an ASCII art.


Since the icon might be used in different places, you need to print the icon in different size.

Given size n, print the icon of size n.

Detailed format is shown below, you can also look at the sample output to confirm it.



Like which is shown in the picture, '*' is used on the boundary, and '@' is used for the letters.

(n+1) '.'s are used to seperate letters and the boundary horizontally, and n '.'s are used vertically.

Each letter is (2n+3)characters wide and (2n+3) characters in height.

The icon's size is (4n+5)×(13n+19).

输入格式

The first line contains a positive integer n(1≤n≤5), representing the size of the icon.

输出格式

Print the icon of size n.

输入样例 复制

1

输出样例 复制

********************************
*..............................*
*..@...@..@@@@@..@......@@@@@..*
*..@@..@..@......@......@......*
*..@.@.@..@@@@@..@......@@@@@..*
*..@..@@..@......@..........@..*
*..@...@..@......@@@@@..@@@@@..*
*..............................*
********************************

分类标签