
module abuse (
    input a,
    input b, 
    input selectA,
    input selectB,
    output w
    );

    assign w = selectA ? a : 1'bz;
    assign w = selectB ? b : 1'bz;

endmodule
