Froggo the frog loves a certain group of numbers. He wants to find all the numbers he likes, which are between the numbers and . He likes all numbers between and that are divisible by .
Given , , and , how many numbers does Froggo like?
Constraints
- and are nonnegative integers
- is a positive integer
For 20% of the points, .
Input Specification
The first line of input will contain 3 space separated integers, , , and .
Output Specification
You are to output a single integer: the count of numbers that Froggo likes.
Sample Input 1
5 10 6
Sample Output 1
1
Sample Input 2
3 24 3
Sample Output 2
8
Comments