Banner Printing  - 1 Point

Given a word or phrase as input, your job is to produce a Banner printing of the letters as output. A banner printing is just a large format of output, in this case, each letter should be 5 characters high and 6 characters wide, and should be made up of the letter being produced (i.e. a Banner A is made up of little As). There should be a single character space between each letter.

So your job is to turn:
A

into

  AA 
 A  A
AAAAAA
A    A
A    A


Input Format
A line of input will contain one word on a single line.

You should only worry about the letters:
A, E, L, N, O, R, S, T, and Z

There will be no more than 15 letters in a word.

Note: Each letter in the input can be upper case or lower case.

The input file will be called jin01.txt.

Output Format
The output should be a banner with the text given input.

They should be 6 characters wide and 5 characters high.

Note: All letters in output should be upper case.

Example
Input
AELNORSTZ

Output
  AA   EEEEEE L      N    N OOOOOO RRRRR   SSSSS TTTTTT ZZZZZZ
 A  A  E      L      NN   N OO  OO RR  RR SS       TT      ZZ
AAAAAA EEEE   L      N  N N OO  OO RRRRR   SSSS    TT     ZZ
A    A E      L      N   NN OO  OO RR RR      SS   TT    ZZ
A    A EEEEEE LLLLLL N    N OOOOOO RR  RR SSSSS    TT   ZZZZZZ