- Time limit: 1.00 s
- Memory limit: 512 MB
Given an undirected graph, your task is to choose a direction for each edge so that the resulting directed graph is acyclic.
Input
The first input line has two integers and : the number of nodes and edges. The nodes are numbered .
After this, there are lines describing the edges. Each line has two distinct integers and : there is an edge between nodes and .
Output
Print lines describing the directions of the edges. Each line has two integers and : there is an edge from node to node . You can print any valid solution.
Constraints
Example
Input:
3 3 1 2 2 3 3 1
Output:
1 2 3 2 3 1