int diceTotal = diceDisplay() + diceDisplay(); //combine total of both dice
cout << "You got: " << diceTotal << endl; //display result to the user
cout << (diceTotal == 7) ? "Natural" : "Yo-Leven";
I want Natural to be displayed when diceTotal is 7 and YoLeven when diceTotal is 11.