Goal
Print the number at big size using characters.
Note: this puzzle has been modified to take into consideration your feedback.
Input
Line 1: An integer N for the number to print.
Line 2: A character C for the symbol used for printing.
Line 3: An integer S for the size of the segment on each number's digit.
Output
Several lines containing a string of characters with the number at big size. There must be a space character between digits on each line but not at the end of each line.
All the digits must have the same width (S + 2 characters).
Constraints
0 ≤ N < 10000000000
1 < S < 10
Example
Output
##
# #
# #
##
# #
# #
##