跳到主要内容
图灵 OJTURING / ONLINE JUDGE

#F2541. Little Girl and Game

    ID: 2547 传统题 2000ms 256MiB 尝试: 0 已通过: 0 难度: 3 上传者: 标签>博弈贪心数学算法思想基础难度共享题库Codeforces英文题面题目来源题面语言

Little Girl and Game

题目描述

B. Little Girl and Game
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

The Little Girl loves problems on games very much. Here's one of them.

Two players have got a string s, consisting of lowercase English letters. They play a game that is described by the following rules:

  • The players move in turns; In one move the player can remove an arbitrary letter from string s.
  • If the player before his turn can reorder the letters in string s so as to get a palindrome, this player wins. A palindrome is a string that reads the same both ways (from left to right, and vice versa). For example, string "abba" is a palindrome and string "abc" isn't.

Determine which player will win, provided that both sides play optimally well − the one who moves first or the one who moves second.

Input

The input contains a single line, containing string s (1≤|s|≤103). String s consists of lowercase English letters.

Output

In a single line print word "First" if the first player wins (provided that both players play optimally well). Otherwise, print word "Second". Print the words without the quotes.

Examples
Input
aba
Output
First
Input
abca
Output
Second

题目来源:fps-www.educg.net-codeforce-1-2833.xml.zip;FPS 共享题包,题包内第 2187 题。保留原作者与原赛事署名。