module led (
  input wire key,
  output reg led
);

always @(*) begin 
    led = !key;
end
    
endmodule