How to Create logic

INPUT 1, INPUT 2, INPUT 3, INPUT 4 (I Don’t know where to give input/Which pin of arduino can use as input)
Now I want output at PIN ** (I don’t know where to receive Output/which pin of arduino can use as output)

You can use any of the I/O pins as input or output, but stay away from pins 0 and 1 as they are used for serial comms.

I need output at output pin after some time like I want to add “Wait (1000)” like at every pin,

"wait is called delay and you should never use it! - See the blink without delay example and FSM's (Finite State Machines) in the playground.

Now I want to create logic, like if PIN** & PIN** high than PIN** should HIGH

Read the reference section!.

Mark