#aising2020a. [aising2020_a]Number of Multiples

[aising2020_a]Number of Multiples

Problem Statement

How many multiples of dd are there among the integers between LL and RR (inclusive)?

Constraints

  • All values in input are integers.
  • 1leqLleqRleq1001 \\leq L \\leq R \\leq 100
  • 1leqdleq1001 \\leq d \\leq 100

Input

Input is given from Standard Input in the following format:

LL RR dd

Output

Print the number of multiples of dd among the integers between LL and RR (inclusive).


Sample Input 1

5 10 2

Sample Output 1

3
  • Among the integers between 55 and 1010, there are three multiples of 22: 66, 88, and 1010.

Sample Input 2

6 20 7

Sample Output 2

2
  • Among the integers between 66 and 2020, there are two multiples of 77: 77 and 1414.

Sample Input 3

1 100 1

Sample Output 3

100