Declare a wire w;
Assign input to the wire;
Assign wire to the output;
module top_module(input a, output y); wire w; assign w=a; assign y=w; // Write your code here endmodule