#include using namespace std ; int main() { int x1 = 5, y1 = 7 ; if ( x1 == y1 ) { cout << "x1 and y1 are equal." << endl; cout << "Another statement." << endl; } return(0) ; }