How do you plan to solve it?
/*Write your code here*/ module decoder3to8( input [2:0] s, output [7:0] y); assign y = (8'd1 << s); endmodule