import java.util.*; import java.io.*; public class doubleclique_font { public static void main(String[] args) throws Exception { PrintWriter out = new PrintWriter(System.out); new doubleclique_font(new FastScanner(System.in), out); out.close(); } public doubleclique_font(FastScanner in, PrintWriter out) { int N = in.nextInt(); int M = in.nextInt(); int[] deg = new int[N]; ArrayList[] adj = new ArrayList[N]; for (int i=0; i(); for (int u=0; u { int index, degree; Node(int index, int degree) { this.index = index; this.degree = degree; } public int compareTo(Node rhs) { return Integer.compare(degree, rhs.degree); } } } class FastScanner{ private InputStream stream; private byte[] buf = new byte[1024]; private int curChar; private int numChars; public FastScanner(InputStream stream) { this.stream = stream; } int read() { if (numChars == -1) throw new InputMismatchException(); if (curChar >= numChars){ curChar = 0; try{ numChars = stream.read(buf); } catch (IOException e) { throw new InputMismatchException(); } if (numChars <= 0) return -1; } return buf[curChar++]; } boolean isSpaceChar(int c) { return c==' '||c=='\n'||c=='\r'||c=='\t'||c==-1; } boolean isEndline(int c) { return c=='\n'||c=='\r'||c==-1; } int nextInt() { return Integer.parseInt(next()); } long nextLong() { return Long.parseLong(next()); } double nextDouble() { return Double.parseDouble(next()); } String next(){ int c = read(); while (isSpaceChar(c)) c = read(); StringBuilder res = new StringBuilder(); do{ res.appendCodePoint(c); c = read(); }while(!isSpaceChar(c)); return res.toString(); } String nextLine(){ int c = read(); while (isEndline(c)) c = read(); StringBuilder res = new StringBuilder(); do{ res.appendCodePoint(c); c = read(); }while(!isEndline(c)); return res.toString(); } }