module selector3 (
input [7:0] a,
input [7:0] b,
input [7:0] c,
input [1:0] sel,
output reg [7:0] y
);
always @(a or b or c or sel)
// Write solution here using if statement
case (sel)
2'b00: y = a;
2'b01: y = b;
2'b10: y = c;
default: y = 8'h00;
endcase
endmodule