import java.io.DataInputStream;
import java.io.IOException;
public class TestPlanar{
/**
* @param args the command line arguments
*/
public static int[][] input(int n, int e){
int[][] a = new int[n][e];
DataInputStream in = new DataInputStream(System.in);
try {
for(int i=0; i<n; i++){
for(int j=0; j<e; j++){
a[i][j] = Integer.parseInt(in.readLine());
}
}
} catch (IOException ex) {
ex.printStackTrace();
}
return a;
}
public static void display(int a[][], int n, int e){
for(int i=0; i<n; i++){
for(int j=0; j<e; j++){
System.out.print(""+a[i][j]+" ");
}
System.out.println(" ");
}
}
public static int[][] removependent(int a[][], int n, int e){
int count;
for(int i=0; i<n; i++){
count = 0;
for(int j=0; j<e; j++){
if(a[i][j] == 1)
count++;
}
if(count == 1){
for(int j=0; j<e; j++){
if(a[i][j] == 1){
a[i][j] = 0;
}
}
}
}
return a;
}
public static int[][] removeselfloop(int a[][], int n, int e){
int count;
for(int i=0; i<e; i++){
count = 0;
for(int j=0; j<n; j++){
if(a[j][i] == 1)
count++;
}
if(count == 1){
for(int j=0; j<n; j++){
a[j][i] = 0;
}
}
}
return a;
}
public static int[][] removeparallel(int a[][], int n, int e){
int count;
for(int i=0; i<n; i++){
for(int j=(i+1); j<n; j++){
count = 0;
for(int k=0; k<e; k++){
if(a[i][k] == 1 && a[j][k] == 1)
count++;
}
if(count > 1){
count = 0;
for(int k=0; k<e; k++){
if(count == 0){
if(a[i][k] == 1 && a[j][k] == 1)
count++;
}
else{
if(a[i][k] == 1 && a[j][k] == 1){
a[i][k] = 0;
a[j][k] = 0;
}
}
}
}
}
}
return a;
}
public static int[][] convertseries(int a[][], int n, int e){
int count, v1 = 0, v2 = 0, c = 0;
for(int i=0; i<n; i++){
count = 0;
c = 0;
for(int j=0; j<e; j++){
if(a[i][j] == 1){
count++;
if(count == 1)
v1 = j;
else
v2 = j;
}
}
if(count == 2){
for(int j=0; j<e; j++){
if(a[i][j] == 1){
a[i][j] = 0;
}
}
for(int j=0; j<n; j++){
if(a[j][v1] == 1){
c = j;
a[j][v1] = 0;
}
}
a[c][v2] = 1;
}
}
return a;
}
public static int[][] degreethree(int a[][], int n, int e){
int count, x = 0;
for(int i=0; i<n; i++){
count = 0;
for(int j=0; j<e; j++){
if(a[i][j] == 1){
if(count == 0)
x = j;
count++;
}
}
if(count == 3){
for(int j=0; j<n; j++){
if(a[j][x] == 1){
a[j][x] = 0;
}
}
System.out.println(" degree three ");
display(a, n, e);
System.out.println(" degree three - series ");
a = convertseries(a, n, e);
display(a, n, e);
System.out.println(" degree three - parallel ");
a = removeparallel(a, n, e);
display(a, n, e);
a = degreethree(a, n, e);
}
}
return a;
}
public static void main(String[] args) {
// TODO code application logic here
int n = 0,e = 0;
DataInputStream in = new DataInputStream(System.in);
try {
n = Integer.parseInt(in.readLine());
e = Integer.parseInt(in.readLine());
} catch (IOException ex) {
ex.printStackTrace();
}
int[][] a = new int[n][e];
a = input(n,e);
display(a, n, e);
a = removependent(a, n, e);
System.out.println(" pendent");
display(a, n, e);
a = removeselfloop(a, n, e);
System.out.println(" self loop");
display(a, n, e);
a = removeparallel(a, n, e);
System.out.println(" parallel");
display(a, n, e);
a = convertseries(a, n, e);
System.out.println(" series");
display(a, n, e);
a = removeparallel(a, n, e);
System.out.println(" parallel");
display(a, n, e);
a = degreethree(a, n, e);
System.out.println(" degree three final");
display(a, n, e);
}
}
input must be a incidence matrix G(n,e) for example
6
12
1 0 1 1 0 0 1 0 0 0 1 1
0 1 1 0 1 0 0 1 0 1 0 0
1 1 0 0 0 1 0 0 0 0 0 1
0 0 0 1 1 1 0 0 1 0 0 0
0 0 0 0 0 0 1 1 1 0 0 0
0 0 0 0 0 0 0 0 0 1 0 0