module commutatore(output z, input x, input y, input alpha);

   assign z = ((~alpha) ? x : y);

endmodule