Concept:
- Total number of orders equals (number of bread choices) times (number of sauce choices), since the two decisions are made independently.
- Instead of adding up the sauce combinations for 0, 1 and 2 sauces one by one, the same count can be found by removing the "too many sauces" cases from the full power set of all possible sauce subsets.
Step 1: Count the bread choices.
5 breads, each available in 2 sizes, giving $5 \times 2 = 10$ bread choices.
Step 2: Count every possible sauce subset, of any size.
Each of the 6 sauces is independently included or excluded, so the total number of subsets (sizes 0 through 6) is $2^6 = 64$.
Step 3: Remove the subsets that use more than 2 sauces.
$\binom{6}{3}+\binom{6}{4}+\binom{6}{5}+\binom{6}{6} = 20+15+6+1 = 42$
Step 4: Subtract to get the valid sauce selections (0, 1, or 2 sauces).
$64 - 42 = 22$
Step 5: Multiply the two independent choices.
$10 \times 22 = 220$
Final Answer: $220$