// Describing theater ticket if( time < 14 ) { cout << "matinee "; } else { cout << "evening "; } if( 'o' == seating ) { cout << "orchestra ticket"; } else { cout << "balcony ticket"; }