Creation of Numbers Without a Zero Figure in the End

If you need to create a number without a zero in the end, you may use the following combinations for numbers 100>a>0. 

###x:r(1,10)###
###y:r(0,10)###
###a:y*10+x###
###randomconst:r(1,9,1,0dp$)###
###number:rf(1,10,1,(x*10)+randomconst)###

As a result, the value of a will be 2-digit numbers (83, 92, 56) but they would never have zero as their 2-nd digit. If you need to produce bigger numbers as an a-value, just increase the tens in the initial brakes.