Please write a program to print a 3D cuboid with length a, width b and height c. You can see the details in the sample input and output.
Please write a program to print a 3D cuboid with length a, width b and height c. You can see the details in the sample input and output.
The first line of input is the number of test cases T (1 <= T <= 100)
For each test case, the first line will be three integers a, b and c (1 <= a, b, c <= 30).
For each test case, print the cuboid as the sample output.
2
1 1 1
6 2 4
..+-+
././|
+-+.+
|.|/.
+-+..
....+-+-+-+-+-+-+
.../././././././|
..+-+-+-+-+-+-+.+
./././././././|/|
+-+-+-+-+-+-+.+.+
|.|.|.|.|.|.|/|/|
+-+-+-+-+-+-+.+.+
|.|.|.|.|.|.|/|/|
+-+-+-+-+-+-+.+.+
|.|.|.|.|.|.|/|/.
+-+-+-+-+-+-+.+..
|.|.|.|.|.|.|/...
+-+-+-+-+-+-+....