Design an arithmetic circuit with two select variablesS1 and S2 and two n-bit data inputs A and B. The circuit generates the following eight arithmetic operations in conjunction with carry Cin: S1 S0 0 0 0 1 1 0 1 1 Cin = 0 F = A + B’ F = A’ + B F=A (transfer) F = A’ (1’s compliment) Cin = 1 F = A + B’ + 1 (Subtract A - B) F = A’ + B + 1 (Subtract A - B) F=A+1(Increment) F = A’ + 1 (2’s compliment)