Rewrite the following code using only continuous assignment statements. module behav_module(input a, b, c, d, e, output reg x, y); always @(a, b, c, d) begin if (a) x = (b & c) | d; else x = (b & c); end always @(a, e) y = e | a; endmodule module assign_module(input a, b, c, d, e, output x, y)?