
Create a half adder. A half adder adds two bits (with no carry-in) and
produces a sum and carry-out.

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

