Design a dircuit that produces the square of a BCD digit. The output
should be in the binary representation.
module square_bcd(bcd, square);
input [3:0] bcd;
output [6:0] square;bcd is the input BCD digit.
square is the output representing the square of the
input digit in binary code.