Say you have a 4-bit unsigned number X[3:0] (so X3 is the most significant bit, X2 is the next most significant, etc.). Using only standard gates (AND, OR, NOT), and constant 0s and 1s, multiply X[3:0] by 8.5 and output it as an 8-bit unsigned number Y[7:0]. Use as few gates as possible, even if it means you use no gates. You may assume that X is divisible by 2. (L8)