
Implement a 4-bit adder with full adders. The output sum should include
the overflow bit.

module TopModule (
  input [3:0] x,
  input [3:0] y,
  output [4:0] sum
);

