Given three integers a, b and c
Write a program that finds the number of all integers from a to b that are multiples of
c
Input:
The first line contains three integers a, b and c (a<=b, a,b,c modulo no more than 100)
Output:
The program should output a single number - the number of all integers from a to b that are multiples of c
Example