it is a boolean algebra question T_T "A and B or C" can be written as "A && B || C" or A∧B∨C. A, B, and C might not be 1s and 0s, but you can apply the operation to every bit of the the binary version of A, B, and C (1010, 1011, and 1100).
1010 && 1011 == 1010
1010 || 1100 == 1110
the decimal of 1110 is:
14
yes, I awnsered my own question lol. I just wanted to see if anyone knew what I was talking about.