if((x == true && y == true) ||(x == true || y = true))

this is same as x or y : if(x||y)



and there is a xor(^) but

if(true^true) = false
if(false^false) = false
if(ture^false) = true


3333333333