input in1, in2, in3, in4;output out;assign out = sel == 2‘b00 ? in1 : sel == 2'b01 ? in2 : sel == 2'b10 ? in3 : sel == 2'b11 ? in4 : 2'bxx;