module omega(output z, input s, input x); 
 
  assign 
    #1 z = ((~s) && (~x));

endmodule 