Byteasar is an owner of a newly opened gym. Because market competition is high, he decided to approach every aspect of his business professionally and offer an advanced booking system for his customers.
The gym is equipped with k various fitness machines. When placing a reservation the customer declares his desire to use a certain gym device for one hour at his chosen time interval. The system then determines the exact times when customers will be using gym equipment, so that no device is assigned to two different reservations at the same time.
Byteasar already received all n reservations for the near future. He noted rightly, that if at some point no person uses the gym, the lights and the air conditioning could be turned off, and the supplements outlet could be closed. As a part of the savings plan, he would like to arrange the exercise sessions in such a way that the total number of hours when the gym is used by at least one person is minimized. Help him with this task.
The first line of the input contains two integers n and k (1≤n≤1,000,000, 1≤k≤109) denoting the number of reservation requests and the number of devices in the gym, respectively. The gym devices are numbered using integers 1 through k; for simplicity also the hours are numbered using consecutive integers starting from 1.
The next n lines describe the placed reservations: the i-th of these lines contains three integers a_i, b_i and p_i (1≤a_i≤b_i≤109, 1≤p_i≤k) denoting that the i-th customer expressed his desire to use the device p_i for one hour in a time interval ranging from hour a_i to hour b_i, inclusive.
If it is possible to plan the exercise sessions, so that all reservations are met and no piece of equipment is used at the same time by two people, the output should contain n+1 lines. The first line should contain the minimum number of hours when the gym is used by at least one person. The i-th of the next n lines should contain a single integer t_i∈\[a_i,b_i] indicating that within the i-th reservation the device p_i is used during the hour t_i.
If it is not possible to schedule the exercise in accordance with these requirements, you should output the word NIE (Polish for no).