
Create a module that implements an XNOR gate.

module TopModule (
  input a,
  input b,
  output out
);

