Bus Lines

아직 제출이 없습니다시간 제한1초메모리 제한512 MB

문제

After many years without any public transport, the town Krockholm will finally get a network of bus lines. The plans are still on the drawing board, but it has been decided that there shall be nn stations labelled 11 to nn, and mm bus lines where each line connects two stations. The only thing remaining is to decide which pairs of stations should be connected. One important requirement is that it should be possible to get from any station to any other. In addition to this, someone had the brilliant idea that the bus lines should be labelled by the sum of their endpoints. This means that all of these sums must be different.

You are given two integers nn and mm. Construct a graph with mm edges and nn vertices labelled 11 to nn, such that:

  1. The graph is connected.
  2. The sums of edge endpoints are distinct.

입력

The input consists of a single line containing two integers nn and mm (2n1002 \leq n \leq 100, 1m1041 \leq m \leq 10^4).

출력

If it is not possible to construct a graph with the given properties, print "-1". Otherwise, print mm lines where the ii'th line contains two integers a_ia\_i, b_ib\_i, the endpoints of the ii'th edge. If there are many possible solutions, any one of them will be accepted.