#include using namespace std; int main() { int x {6}; if (7 == x ) { cout << "x = " << x << endl; cout << "x is seven" << endl; } return 0; }