#include main() { int x; int y; cout << "Enter a value for x: "; cin >> x; cout << "You entered the value: " << x << " for x." << endl << endl; cout << "Enter a value for x: "; cin >> y; cout << "You entered the value: " << y << " for y." << endl << endl; if ( x = y ) cout << "X is equal to Y\n"; else cout << "X is not equal to Y\n"; return 0; }