You can put this solution on YOUR website! In how many ways can you select 2 kings and an ace, in that order, from a standard deck of 52 cards?
---
# of ways to select 2 kings: 4C2 = 6
# of ways to select an ace: 4C1 = 4
----
# of ways to 2 kings and 1 ace = 6*4 = 24
------------------
Cheers,
Stan H.