Using the OR operator '|' we can do the OR operation between 2 inputs and assign it to an output.
/*Write your code here*/ module top_module ( input a, input b, output y ); //wire w; assign y = a | b; endmodule