Birthday Balls

0

0 votes
Easy
Problem

Chef got a bag full of N balls on his birthday. He thought of playing a game with his cousin. The rules were, both players will have alternate turns starting from Chef. Each one of them can remove atmost K and atleast 1 ball from the bag. The one who cannot make a move loses the game.

Assuming both plays optimally, print "First" if Chef wins else print "Second".

INPUT

Two space separated integers N and K.
 

OUTPUT

Print First or Second in single line.

CONSTRAINTS

1 N,K 105

Time Limit: 1
Memory Limit: 256
Source Limit:
Explanation

Nothing To Show :)

Editor Image

?