1916: 【入门】数字之和是10数

Memory Limit:64 MB Time Limit:1.000 S
Judge Style:Text Compare Creator:
Submit:1 Solved:1

Description

请问1~n中,各个位数字之和为10的数有多少个?(n<1000)。

比如:数字19、28、37、136、253都是符合条件的数。

Input

输入一个整数n(n<1000);

Output

输出一个整数,代表符合条件数的个数;

Sample Input Copy

100

Sample Output Copy

9