#include using namespace std ; int main() { int x1 = 6 ; if ( x1 < 10 ) if ( x1 < 5 ) cout << "Line A." << endl; else cout << "Line B." << endl; return(0) ; }