You are given a tree with nodes and edges. Initially, each node is uncolored.
You and your best friend are playing a game by painting the nodes. In this game, you will alternately perform the following operation, starting with yourself:
- Select a node that is not painted yet.
- If it is your turn, paint the node white, otherwise paint the node black.
Then, after all the vertices are colored, the following procedure takes place:
- Repaint every white node that is adjacent to a black node, in black.
Note that all such white nodes are repainted simultaneously, not one at a time.
If there are still one or more white nodes remaining, you win. If all the nodes are now black, your friend wins. Determine the winner of the game, assuming that you will both play optimally.
Input Specification
The first line will contain the integer .
The next lines will each contain two integers, , indicating nodes and are connected by an edge. It is guaranteed the entire tree is connected.
Output Specification
Output First
if you win, and Second
if your friend wins.
Subtasks
There are no subtasks for this problem.
Sample Input 1
3
1 2
2 3
Sample Output 1
First
Sample Input 2
4
1 2
2 3
2 4
Sample Output 2
First
Sample Input 3
6
1 2
2 3
3 4
2 5
5 6
Sample Output 3
Second
Comments