Each test case is given using several lines. The first line contains two integers $K$ and $W$ representing respectively the number of kids $(3 \leq K \leq 10^9)$ and the number of wishes $(0 \leq W \leq 10^5)$. Kids are identified with numbers between $1$ and $K$. Each of the next $W$ lines describes a different wish using two distinct integers $A$ and $B$ $(1 \leq A, B \leq K)$; these values represent that kid $A$ wishes to sit down next to kid $B$. Each kid has at most two wishes.
The last test case is followed by a line containing two zeros.