/** * Multiplexor: * out = a if sel == 0 * b otherwise */ `default_nettype none module Mux( input a, input b, input sel, output out ); // Put your code here: endmodule