module OR3 (Z,A,B,C);

  output  Z;
  input   A;
  input   B;
  input   C;

  wire Z,A,B,C;

  or s0 (Z,A,B,C);

endmodule
