408479: GYM103148 A Zeros
Description
Santa Claus is already preparing for Christmas 2021. He wants to buy some positive number of presents, such that he will be able to divide them evenly (without remainder) among all eligible (not naughty) children. However, he does not yet know how many eligible children there will be – he only knows that this number will be between $$$a$$$ and $$$b$$$. Therefore, he wants to buy the minimum positive number of presents that can be divided evenly between any number $$$x$$$ of children with $$$x \in \{a,a+1,...,b\}$$$.
He has computed this (possibly huge) number of presents, but he is unsure about the correctness, and he would like your help in performing the following basic sanity check. Are you able to tell him how many zero digits there should be at the end of this number?
InputThe first and only line of the input consists of two space-separated integers $$$a$$$ and $$$b$$$ ($$$1 \le a \le b \le 10^{18}$$$).
OutputOutput a single integer – the number of zeros at the end of the number of presents that Santa needs to buy.
ScoringSubtask 1 (6 points): $$$b \le 16$$$.
Subtask 2 (7 points): $$$b \le 40$$$.
Subtask 3 (9 points): $$$a = 1$$$ and $$$b \le 200$$$.
Subtask 4 (12 points): $$$b-a \le 10^6$$$.
Subtask 5 (17 points): $$$a = 1$$$.
Subtask 6 (49 points): there are no additional constraints.
ExamplesInput1 6Output
1Input
10 11Output
1Note
First example: If there can be between 1 and 6 children, then Santa needs at least 60 presents (as this is the smallest number that is divisible by all of 1, 2, 3, 4, 5 and 6), and the number 60 has a single zero at the end.
Second example: If there can be either 10 or 11 children, Santa will buy 110 presents.