From adjacency matrix to the list of edges - 2
Execution time limit is 1 second
Runtime memory usage limit is 128 megabytes
The simple oriented graph is given by the adjacency matrix. Print its representation as a list of edges.
Input
The first line contains number of vertices n (1 ≤ n ≤ 100) in the graph. Each of the next n lines contains n elements – the description of adjacency matrix.
Output
Print the list of edges, ordered by the first vertex in a pair that describes an edge.
Examples
Input #1
Answer #1
Submissions 3K
Acceptance rate 73%