Design a combinational circuit that produces the product of two two-bit numbers (XYZW = AB * CD).
Input Output decimal ABCD XYZW
0 0000 0000 = 00 * 00 = 0 = 0000
1 0001 0000 = 00 * 01 = 0 = 0000
2 0010 0000 = 0 = 0100 = 0000
...
15 1111 1001 = 11 * 11 = 3 * 3 = 9 = 1001
Hint: Find the simplified form of Y, Z, and W, and then construct the circuit.