module overture(
in,
out
);
input [7:0] in;
output reg [7:0] out;
always@(*) begin
foreach (in[i]) begin
out[i] = !in[i];
end
endmodule