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