module inverter (a, z);
input a;
output z;

assign #10 z = !a;

endmodule

