module top_module(input a, output y); // Write your code here wire Signal; assign Signal = a; assign y = Signal; endmodule