
library IEEE;
use IEEE.STD_LOGIC_1164.ALL;
use IEEE.STD_LOGIC_ARITH.ALL;
use IEEE.STD_LOGIC_UNSIGNED.ALL;
--------------------------------------------------------------------

entity and_gate is 
	port 
	(
	IN1: 	in 	std_logic;
	IN2: 	in 	std_logic;
	OUTPUT:  	out 	std_logic
	); 
end and_gate;


-------------------------------------------------------------------
Architecture behavioral of and_gate is 
begin
		OUTPUT <= IN1 AND IN2;
end Architecture behavioral;
------------------------------------------------------------------