Mr B thought that Mr A's parallelogram was too heavy and dark. Thus, Mr B wanted an empty parallogram.
Help Mr B write a program to make an empty parallelogram.
Input
A string s with length 1 < n ≤ 100. You may assume that the string does not contain spaces or any special characters.
Output
An empty parallelogram with string s on the sides.
Sample Input 1
abc
Sample Output 1
abc
c a
b b
a c
cba
Sample Input 2
abcde
Sample Output 2
abcde
e a
d b
c c
b d
a e
edcba