#aising2020a. [aising2020_a]Number of Multiples
[aising2020_a]Number of Multiples
Problem Statement
How many multiples of are there among the integers between and (inclusive)?
Constraints
- All values in input are integers.
Input
Input is given from Standard Input in the following format:
Output
Print the number of multiples of among the integers between and (inclusive).
Sample Input 1
5 10 2
Sample Output 1
3
- Among the integers between and , there are three multiples of : , , and .
Sample Input 2
6 20 7
Sample Output 2
2
- Among the integers between and , there are two multiples of : and .
Sample Input 3
1 100 1
Sample Output 3
100