Олимпиадный тренинг

Задача 7135. From a to b. Task 4


Задача

Темы: Цикл for
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

Enter

Output

1 10 3
3