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