just transfer the input value to output y
module top_module(input a, output y); assign y=a; endmodule