You can put this solution on YOUR website! How many two-digit numbers can formed if the first digit cannot be 0 and no digit can be repeated?
-----------------------------
ways to select 1st digit: 9
ways to select 2nd digit: 10
--------------------------------
# of two-digit numbers: 9*10 = 90
========================================
Cheers,
Stan H.