2424.Sweets Game

Time Limit: 1s Memory Limit: 256MB

Karlsson has visited Lillebror again. They found a box of chocolates and a big whipped cream cake at Lillebror's place. Karlsson immediately suggested to divide the sweets fairly between Lillebror and himself. Specifically, to play together a game he has just invented with the chocolates. The winner will get the cake as a reward.

The box of chocolates has the form of a hexagon. It contains 19 cells for the chocolates, some of which contain a chocolate. The players move in turns. During one move it is allowed to eat one or several chocolates that lay in the neighboring cells on one line, parallel to one of the box's sides. The picture below shows the examples of allowed moves and of an unacceptable one. The player who cannot make a move loses.

2424_1.png

Karlsson makes the first move as he is Lillebror's guest and not vice versa. The players play optimally. Determine who will get the cake.

Input Format(From the terminal/stdin)

The input data contains 5 lines, containing 19 words consisting of one symbol. The word "O" means that the cell contains a chocolate and a "." stands for an empty cell. It is guaranteed that the box contains at least one chocolate. See the examples for better understanding.

Output Format(To the terminal/stdout)

If Karlsson gets the cake, print "Karlsson" (without the quotes), otherwise print "Lillebror" (yet again without the quotes).

Sample Input 1

Copy
 . . . . . O .
. . O O . . . . . . . .
· · · · · · · \n
 · · · · · · · · · · · \n

Sample Output 1

Copy
Lillebror
         \n

Sample Input 2

Copy
 . . . . . . O
. . . O . O . O . . O .
· · · · · · · \n
 · · · · · · · · · · · \n

Sample Output 2

Copy
Karlsson
        \n

Submit

请先 登录

© 2025 FAQs