cout << (first == "" ? "eh" : first) << endl;
(expression ? action1 : action 2)
123456
if(first == "") // ie if first is blank cout << "eh"; else cout << first; cout << endl; // for whatever choice is printed out of the above