Time limit: 1.0s , Memory limit: 256M , Points: 1 (partial)
An employee will receive a bonus each time the number of views on a video they created is positive and divisible by all integers from to
. Given an integer
, determine how many times the employee will receive the bonus if their video gets from
to
views.
Input
- A single integer
- the number of views on the video.
Output
- A single integer - the number of times the employee will receive the bonus.
Samples
Sample Input 1
49872
Sample Output 1
19
Comments