module logic_and_gate( input din1 input din2 output led ) assign led = din1 & din2 endmodule