PivotOJ

OKVIRI

시간 제한: 1000ms메모리 제한: 128MB출처: COCI 2006-2007BOJ 3054

문제

“Peter Pan frames” are a way of decorating text in which every character is framed by a diamondshaped frame, with frames of neigbhouring characters interleaving. A Peter Pan frame for one letter looks like this ('X' is the letter we are framing): 

..#..
.#.#.
#.X.#
.#.#.
..#..

However, such a framing would be somewhat dull so we'll frame every third letter using a “Wendy frame”. A Wendy frame looks like this: 

..*..
.*.*.
*.X.*
.*.*.
..*..

When a Wendy frame interleaves with a Peter Pan frame, the Wendy frame (being much nicer) is put on top. For an example of the interleaving check the sample cases.

입력

The first and only line of input will contain at most 15 capital letters of the English alphabet. 

 

출력

Output the word written using Peter Pan and Wendy frames on 5 lines. 

 

예제

예제 1

입력
A
출력
..#..
.#.#.
#.A.#
.#.#.
..#..

예제 2

입력
DOG
출력
..#...#...*..
.#.#.#.#.*.*.
#.D.#.O.*.G.*
.#.#.#.#.*.*.
..#...#...*..

예제 3

입력
ABCD
출력
..#...#...*...#..
.#.#.#.#.*.*.#.#.
#.A.#.B.*.C.*.D.#
.#.#.#.#.*.*.#.#.
..#...#...*...#..
코드를 제출하려면 로그인하세요.