PROGRAMMING:Count the numbers whose tens are larger than ones
Given two positive integers, m and N, m < n, calculate the sum of all numbers between M and n (including M and N) that meet the following conditions
Condition: tens are larger than ones
###Input format:
Enter two positive integers m and N, and ensure that the data is m < n, 10 < = m < n < = 1000.
###Output format:
Output the sum of all numbers satisfying the condition between M and N. after outputting the value, you need to output carriage return to wrap the line.
###Input example:
Here is a set of inputs. For example:
```in
150 160
```
###Output example:
The corresponding output is given here. For example, 150 + 151 + 152 + 153 + 154 + 160:
```out
nine hundred and twenty
```
answer:If there is no answer, please comment
Condition: tens are larger than ones
###Input format:
Enter two positive integers m and N, and ensure that the data is m < n, 10 < = m < n < = 1000.
###Output format:
Output the sum of all numbers satisfying the condition between M and N. after outputting the value, you need to output carriage return to wrap the line.
###Input example:
Here is a set of inputs. For example:
```in
150 160
```
###Output example:
The corresponding output is given here. For example, 150 + 151 + 152 + 153 + 154 + 160:
```out
nine hundred and twenty
```
answer:If there is no answer, please comment