a=0; b=10; if(a&&b) { cout<<“condition is true”; } else cout<<“condition is not true”; if(!(a&&b)) { cout<<“condition is true”; } }