There are $N$ piles of candies on the table. The piles are numbered $1$ through $N$. At first, pile $i$ contains $a_i$ candies.
Snuke and Ciel are playing a game. They take alternating turns. Snuke goes first. In each turn, the current player must perform one of the following two operations:
The player who eats the last candy on the table, loses the game. Determine which player will win if both players play the game optimally.
The input is given from Standard Input in the following format:
$N$ $a_1$ $a_2$ $…$ $a_N$
If Snuke will win, print First
. If Ciel will win, print Second
.
2 1 3
First
At the beginning of the game, pile $2$ contains the most candies. If Snuke eats all candies of this pile, Ciel has no choice but to eat the last candy.
3 1 2 1
First
If Snuke eats one candy from each pile, Ciel is again left with the last candy.
3 1 2 3
Second