main :: IO () main = do n <- read <$> getLine :: IO Int _ <- getLine let d2 = div n 2 putStrLn $ if odd d2 then "First" else "Second"