And Specification
=================

Description:
------------
The AND gate has two inputs and one output. If both inputs are 1, the output is 1. Otherwise the output is 0. 
The AND gate is the negated version of the NAND gate.


Interface Specification:
------------------------
Inputs: in1, in2;
Outputs: out;


Graphical Representation:
-------------------------
       _____
-in1--|     |
      | AND |--out-
-in2--|_____|


Truth Table:
------------
 in1 | in2 || out
 ----------------
 0   | 0   || 0
 0   | 1   || 0
 1   | 0   || 0
 1   | 1   || 1