CF780E Underground Lab

Description

The evil Bumbershoot corporation produces clones for gruesome experiments in a vast underground lab. On one occasion, the corp cloned a boy Andryusha who was smarter than his comrades. Immediately Andryusha understood that something fishy was going on there. He rallied fellow clones to go on a feud against the evil corp, and they set out to find an exit from the lab. The corp had to reduce to destroy the lab complex. The lab can be pictured as a connected graph with $ n $ vertices and $ m $ edges. $ k $ clones of Andryusha start looking for an exit in some of the vertices. Each clone can traverse any edge once per second. Any number of clones are allowed to be at any vertex simultaneously. Each clone is allowed to stop looking at any time moment, but he must look at his starting vertex at least. The exit can be located at any vertex of the lab, hence each vertex must be visited by at least one clone. Each clone can visit at most ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF780E/195c355cb51dee2331ee82e6009eebc39475b617.png) vertices before the lab explodes. Your task is to choose starting vertices and searching routes for the clones. Each route can have at most ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF780E/195c355cb51dee2331ee82e6009eebc39475b617.png) vertices.

Input Format

N/A

Output Format

N/A

Explanation/Hint

In the first sample case there is only one clone who may visit vertices in order (2, 1, 3), which fits the constraint of 6 vertices per clone. In the second sample case the two clones can visited vertices in order (2, 1, 3) and (4, 1, 5), which fits the constraint of 5 vertices per clone.