#include using namespace std; int main() { bool p = true; bool q = false; if (!(!!!q && (p || q))) { cout << "true!" << endl; cout << "Skip this, too!" << endl; } else { cout << "false!" << endl; cout << "Don't skip this!" << endl; } return 0; }