当前你的浏览器版本过低,网站已在兼容模式下运行,兼容模式仅提供最小功能支持,网站样式可能显示不正常。
请尽快升级浏览器以体验网站在线编辑、在线运行等功能。
A Benedict monk No.16 writes down the decimal representations of all natural numbers between and including m and n, m ≤ n. How many 0's will he write down?
Input consists of a sequence of lines. Each line contains two unsigned 32-bit integers m and n, m ≤ n. The last line of input has the value of m negative and this line should not be processed.
For each line of input print one line of output with one integer number giving the number of 0's written down by the monk.
10 11 100 200 0 500 1234567890 2345678901 0 4294967295 -1 -1
1 22 92 987654304 3825876150
时间上限 | 内存上限 |
1000 | 65536 |