#ARC078B. [ABC067D] Fennec VS. Snuke

[ABC067D] Fennec VS. Snuke

Score : 400400 points

Problem Statement

Fennec and Snuke are playing a board game.

On the board, there are NN cells numbered 11 through NN, and N1N-1 roads, each connecting two cells. Cell aia_i is adjacent to Cell bib_i through the ii-th road. Every cell can be reached from every other cell by repeatedly traveling to an adjacent cell. In terms of graph theory, the graph formed by the cells and the roads is a tree.

Initially, Cell 11 is painted black, and Cell NN is painted white. The other cells are not yet colored. Fennec (who goes first) and Snuke (who goes second) alternately paint an uncolored cell. More specifically, each player performs the following action in her/his turn:

  • Fennec: selects an uncolored cell that is adjacent to a black cell, and paints it black.
  • Snuke: selects an uncolored cell that is adjacent to a white cell, and paints it white.

A player loses when she/he cannot paint a cell. Determine the winner of the game when Fennec and Snuke play optimally.

Constraints

  • 2N1052 \leq N \leq 10^5
  • 1ai,biN1 \leq a_i, b_i \leq N
  • The given graph is a tree.

Input

Input is given from Standard Input in the following format:

NN

a1a_1 b1b_1

::

aN1a_{N-1} bN1b_{N-1}

Output

If Fennec wins, print Fennec; if Snuke wins, print Snuke.

7
3 6
1 2
3 1
7 4
5 7
1 4
Fennec

For example, if Fennec first paints Cell 22 black, she will win regardless of Snuke's moves.

4
1 4
4 2
2 3
Snuke