#include using namespace std ; int main() { int x1 = 5, y1 = 5 ; if ( x1 == y1 ) cout << "x1 is equal to y1" << endl; else cout << "x1 is not equal to y1" << endl; return(0) ; }