it is a number that is divisible by every digits it contains.
eg 128 (128%1==0,128%2==0,122%8==0)
it should not contain zero
given lower and upper bound , output the list of every possible self dividing number , including the bound.
input
left=1
right=22
output
1,2,3,4,5,6,7,8,9,11,12,15,22