3948.Plate Game

Time Limit: 1s Memory Limit: 256MB

You've got a rectangular table with length a and width b and the infinite number of plates of radius r. Two players play the following game: they take turns to put the plates on the table so that the plates don't lie on each other (but they can touch each other), and so that any point on any plate is located within the table's border. During the game one cannot move the plates that already lie on the table. The player who cannot make another move loses. Determine which player wins, the one who moves first or the one who moves second, provided that both players play optimally well.

Input Format(From the terminal/stdin)

Input A single line contains three space-separated integers a, b, r (1 \le a,b,r \le 100) - the table sides and the plates' radius, correspondingly.

Output Format(To the terminal/stdout)

Output If wins the player who moves first, print "First" (without the quotes). Otherwise print "Second" (without the quotes).

Sample Input 1

Copy
5 5 2
 · · \n

Sample Output 1

Copy
First
     \n

Sample Input 2

Copy
6 7 4
 · · \n

Sample Output 2

Copy
Second
      \n

Hints

In the first sample the table has place for only one plate. The first player puts a plate on the table, the second player can't do that and loses. 3948_1.png In the second sample the table is so small that it doesn't have enough place even for one plate. So the first player loses without making a single move. 3948_2.png

Submit

请先 登录

© 2025 FAQs