Hide

Problem F
Okviri

“Peter Pan frames” are a way of decorating text in which every character is framed by a diamond- shaped 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.

Input

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

Output

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

Sample Input 1 Sample Output 1
A
..#..
.#.#.
#.A.#
.#.#.
..#..
Sample Input 2 Sample Output 2
DOG
..#...#...*..
.#.#.#.#.*.*.
#.D.#.O.*.G.*
.#.#.#.#.*.*.
..#...#...*..
Sample Input 3 Sample Output 3
ABCD
..#...#...*...#..
.#.#.#.#.*.*.#.#.
#.A.#.B.*.C.*.D.#
.#.#.#.#.*.*.#.#.
..#...#...*...#..

Please log in to submit a solution to this problem

Log in