
Create a full adder. A full adder adds three bits (including carry-in)
and produces a sum and carry-out.

module TopModule (
  input a,
  input b,
  input cin,
  output cout,
  output sum
);

