- Time limit: 1.00 s
- Memory limit: 512 MB
In a movie festival, movies will be shown. Syrjälä's movie club consists of members, who will be all attending the festival.
You know the starting and ending time of each movie. What is the maximum total number of movies the club members can watch entirely if they act optimally?
Input
The first input line has two integers and : the number of movies and club members.
After this, there are lines that describe the movies. Each line has two integers and : the starting and ending time of a movie.
Output
Print one integer: the maximum total number of movies.
Constraints
Example
Input:
5 2 1 5 8 10 3 6 2 5 6 9
Output:
4