Draw a cuboid with a given width, height and depth in an oblique perspective1, according to the following specification.

cube
Specification for drawing a cuboid.

The front face must be drawn using pound signs (#), the side face using plus signs (+) and the top face using colons (:). The front and side faces must be separated from each other using slashes (/). None of the output lines may have trailing spaces.

Input

Three lines that each contain an integer number. These numbers respectively indicate the width wN0, the height hN0 and the depth dN of a cuboid.

Output

Draw a cuboid having width w, height h and depth d according to the above specification.

Example

Input:

20
10
3

Output:

   :::::::::::::::::::/
  :::::::::::::::::::/+
 :::::::::::::::::::/++
####################+++
####################+++
####################+++
####################+++
####################+++
####################+++
####################+++
####################++
####################+
####################