#P1142E. Pink Floyd

Pink Floyd

No submission language available for this problem.

Description

This is an interactive task.

Scientists are about to invent a new optimization for the Floyd-Warshall algorithm, which will allow it to work in linear time. There is only one part of the optimization still unfinished.

It is well known that the Floyd-Warshall algorithm takes a graph with nn nodes and exactly one edge between each pair of nodes. The scientists have this graph, what is more, they have directed each edge in one of the two possible directions.

To optimize the algorithm, exactly mm edges are colored in pink color and all the rest are colored in green. You know the direction of all mm pink edges, but the direction of green edges is unknown to you. In one query you can ask the scientists about the direction of exactly one green edge, however, you can perform at most 2n2 \cdot n such queries.

Your task is to find the node from which every other node can be reached by a path consisting of edges of same color. Be aware that the scientists may have lied that they had fixed the direction of all edges beforehand, so their answers may depend on your queries.

The first line contains two integers nn and mm (1n1000001 \le n \le 100\,000, 0m1000000 \le m \le 100\,000) — the number of nodes and the number of pink edges.

The next mm lines describe the pink edges, the ii-th of these lines contains two integers uiu_i, viv_i (1ui,vin1 \le u_i, v_i \le n, uiviu_i \ne v_i) — the start and the end of the ii-th pink edge. It is guaranteed, that all unordered pairs (ui,vi)(u_i, v_i) are distinct.

When you found the answer, print "!" and the number of the node from which every other node can be reached by a single-colored path.

Interaction

To ask the direction of the green edge between nodes aa and bb, print "?", aa and bb in single line, separated by the space characters.

In answer to this read a single integer, which will be 11 if the edge is directed from aa to bb and 00 if the edge is directed from bb to aa.

You can ask at most 2n2 \cdot n queries, otherwise you will get Wrong Answer.

After printing a query do not forget to output end of line and flush the output. Otherwise you will get Idleness limit exceeded. To do this, use:

  • fflush(stdout) or cout.flush() in C++;
  • System.out.flush() in Java;
  • flush(output) in Pascal;
  • stdout.flush() in Python;
  • see documentation for other languages.

Answer 1-1 instead of 00 or 11 means that you made an invalid query or exceeded the query limit. Exit immediately after receiving 1-1 and you will see Wrong answer verdict. Otherwise you can get an arbitrary verdict because your solution will continue to read from a closed stream.

Hacks

Hacks should be formatted as follows.

The first line should contain two integers nn and mm (1n3001 \le n \le 300, 0mn(n1)/20 \le m \le n \cdot (n - 1) / 2) — the number of nodes and number of pink edges.

The next mm lines should describe the pink edges, the ii-th line should contain 2 integers aia_i, bib_i (1ai,bin1 \le a_i, b_i \le n, aibia_i \ne b_i), which means that there is a pink edge from aia_i to bib_i. All unordered pairs (ai,bi)(a_i, b_i) should be distinct.

The next (n(n1)/2m)(n \cdot (n - 1) / 2 - m) lines should describe the green edges, the ii-th line should contain two integers aia_i, bib_i (1ai,bin1 \le a_i, b_i \le n, aibia_i \ne b_i)), which means that there is a green edge from aia_i to bib_i. All unordered pairs of (ai,bi)(a_i, b_i) should be distinct and should also be different from the pairs for the pink edges.

Input

The first line contains two integers nn and mm (1n1000001 \le n \le 100\,000, 0m1000000 \le m \le 100\,000) — the number of nodes and the number of pink edges.

The next mm lines describe the pink edges, the ii-th of these lines contains two integers uiu_i, viv_i (1ui,vin1 \le u_i, v_i \le n, uiviu_i \ne v_i) — the start and the end of the ii-th pink edge. It is guaranteed, that all unordered pairs (ui,vi)(u_i, v_i) are distinct.

Output

When you found the answer, print "!" and the number of the node from which every other node can be reached by a single-colored path.

Samples

Sample Input 1

4 2
1 2
3 4
0
1
1

Sample Output 1

? 1 3
? 4 2
? 3 2
! 3

Note

In the example above the answer for the query "? 1 3" is 0, so the edge is directed from 3 to 1. The answer for the query "? 4 2" is 1, so the edge is directed from 4 to 2. The answer for the query "? 3 2" is 1, so the edge is directed from 3 to 2. So there are green paths from node 3 to nodes 1 and 2 and there is a pink path from node 3 to node 4.