It should be fairly eeasy to come up with a boolean structure fo this. For example, you have if input 1 as a true and input 2 as a true, what does it output???
Normally you can make a table to figure out what structure you could use. 1 = true, 0 = false
Input 1 Input 2 Output
0 0 0
0 1 0
1 0 1
1 1 0 (I am assuming)
That means if you write it out out need (input 1) * (input 2)' or an And terminal with input 1 wired to a terminal and input 2 wired to a not and then to the other and terminal (see picture)
Kenny