module NOR3 (Z,A,B,C);

  output  Z;
  input   A;
  input   B;
  input   C;

  wire Z,A,B,C;

  nor s0 (Z,A,B,C);

endmodule
