CF405E Graph Cutting
Description
Little Chris is participating in a graph cutting contest. He's a pro. The time has come to test his skills to the fullest.
Chris is given a simple undirected connected graph with $ n $ vertices (numbered from 1 to $ n $ ) and $ m $ edges. The problem is to cut it into edge-distinct paths of length 2. Formally, Chris has to partition all edges of the graph into pairs in such a way that the edges in a single pair are adjacent and each edge must be contained in exactly one pair.
For example, the figure shows a way Chris can cut a graph. The first sample test contains the description of this graph.
You are given a chance to compete with Chris. Find a way to cut the given graph or determine that it is impossible!
Input Format
The first line of input contains two space-separated integers $ n $ and $ m $ ( $ 1
Output Format
If it is possible to cut the given graph into edge-distinct paths of length 2, output  lines. In the $ i $ -th line print three space-separated integers $ x_{i} $ , $ y_{i} $ and $ z_{i} $ , the description of the $ i $ -th path. The graph should contain this path, i.e., the graph should contain edges $ (x_{i},y_{i}) $ and $ (y_{i},z_{i}) $ . Each edge should appear in exactly one path of length 2. If there are multiple solutions, output any of them.
If it is impossible to cut the given graph, print "No solution" (without quotes).